Fixed bug in getArbitraryResources()

This commit is contained in:
CalDescent 2021-12-03 18:17:20 +00:00
parent f87df53791
commit fc12ea18b8

View File

@ -329,7 +329,7 @@ public class HSQLDBArbitraryRepository implements ArbitraryRepository {
String identifierResult = resultSet.getString(3);
// We should filter out resources without names
if (name == null) {
if (nameResult == null) {
continue;
}