From 966bc2f6571121c4c818a2e487d29bada0138d8d Mon Sep 17 00:00:00 2001 From: Antti Villberg Date: Sun, 10 May 2020 10:26:37 +0300 Subject: [PATCH] Handle all AttributeRelation properties gitlab #128 Change-Id: I62926e825fdef2e6ccced6805cac1e13012c0d3b --- .../src/org/simantics/document/server/Functions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/org.simantics.document.server/src/org/simantics/document/server/Functions.java b/bundles/org.simantics.document.server/src/org/simantics/document/server/Functions.java index d5a727ffa..8dea97ad1 100644 --- a/bundles/org.simantics.document.server/src/org/simantics/document/server/Functions.java +++ b/bundles/org.simantics.document.server/src/org/simantics/document/server/Functions.java @@ -164,8 +164,8 @@ public class Functions { StandardAssertedGraphPropertyVariable ass = (StandardAssertedGraphPropertyVariable)property; if("dataDefinitions".equals(ass.property.name) || "commands".equals(ass.property.name) || "pollingFunction".equals(ass.property.name)) { storePropertyValueAndExceptions(graph, parent, ass.property.name, property, map); + continue; } - continue; } Resource predicate = property.getPossiblePredicateResource(graph); if(predicate != null) { @@ -297,8 +297,8 @@ public class Functions { StandardAssertedGraphPropertyVariable ass = (StandardAssertedGraphPropertyVariable)property; if("dataDefinitions".equals(ass.property.name) || "commands".equals(ass.property.name) || "pollingFunction".equals(ass.property.name)) { result.add(ass.property.name); + continue; } - continue; } Resource predicate = property.getPossiblePredicateResource(graph); if(predicate != null) { -- 2.43.2