minor updates for getHighestClassificationLevelFromImmediateChildren() implementation

unit tests & integration tests created
This commit is contained in:
Rodica Sutu
2018-01-29 18:16:15 +02:00
parent 1c222cddf6
commit 2f104e9215

View File

@@ -140,7 +140,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO,
queryParams.setPropertyQnameId(pair.getFirst());
// Perform the query
return new HashSet<String>(template.selectList(GET_CHILDREN_PROPERTY_VALUES, queryParams));
return new HashSet<>(template.selectList(GET_CHILDREN_PROPERTY_VALUES, queryParams));
}
}