Commit 52f19bc9 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Minor change after datamodel update

parent 14fadb27
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -59,8 +59,8 @@ public class NodeInfo {
    }

    private Optional<String> getProperty(Node node, String uri) {
        if (node.getProperties() != null && node.getProperties().getProperty() != null) {
            for (Property property : node.getProperties().getProperty()) {
        if (node.getProperties() != null && node.getProperties() != null) {
            for (Property property : node.getProperties()) {
                if (uri.equals(property.getUri())) {
                    return Optional.of(property.getValue());
                }