Skip to content

Commit 9d169ac

Browse files
committed
fix compilation
1 parent 4498e74 commit 9d169ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/main/com/cronos/onlinereview/actions/project/SaveProjectAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,7 @@ private Set<Long> getParentGroups(long groupId) throws BaseException {
14781478
* @return the group
14791479
*/
14801480
private Set<Long> parseGroup(JsonNode groupNode) {
1481-
Set<Long> parentGroupIds = new HashSet<>();
1481+
Set<Long> parentGroupIds = new HashSet<Long>();
14821482
Long parentGroupId = groupNode.path("id").asLong();
14831483
if (parentGroupId != 0) {
14841484
// exclude null node

0 commit comments

Comments
 (0)