From fbfec9e8c7d8d768d9c6327060d9333b2feaea81 Mon Sep 17 00:00:00 2001 From: Jussi Koskela Date: Thu, 31 Jan 2019 16:34:16 +0200 Subject: [PATCH] Mark SPECIAL_ROOTs as EXTERNAL in DomainProcessor3 - fixed condition gitlab #251 Change-Id: I8bbffd898d2c5ea2a12330461dbf65daeacbe14d --- .../src/org/simantics/db/layer0/util/DomainProcessor3.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- 2.43.2