From: Marko Luukkainen Date: Fri, 1 Feb 2019 13:24:08 +0000 (+0000) Subject: Merge "Fix selectPath returning true for nodes that haven't been loaded." X-Git-Tag: v1.43.0~136^2~201 X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=commitdiff_plain;h=3260b37ec9ce61bc8a1383a5fc9ab8d8ab9d1fae;hp=cd343042b5518b7a45fffb35ccb91cb4d810a6e7 Merge "Fix selectPath returning true for nodes that haven't been loaded." --- diff --git a/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/util/DomainProcessor3.java b/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/util/DomainProcessor3.java index 85cc8e629..5c2cd05c9 100644 --- a/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/util/DomainProcessor3.java +++ b/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/util/DomainProcessor3.java @@ -154,7 +154,7 @@ public class DomainProcessor3 { LOGGER.info("Root preclassification problem, expected no preclassification, got " + pre.name()); // Roots are classified in status as INTERNAL status.put(ss.resource, ExtentStatus.INTERNAL); - } else if(SeedSpecType.ROOT.equals(ss.specType)) { + } else if(SeedSpecType.SPECIAL_ROOT.equals(ss.specType)) { // Special roots e.g. %model are marked as EXTERNAL if(pre != null && !ExtentStatus.EXTERNAL.equals(pre)) LOGGER.info("Special root preclassification problem, expected EXTERNAL preclassification, got " + pre.name());