X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.structural.synchronization.client%2Fsrc%2Forg%2Fsimantics%2Fstructural%2Fsynchronization%2Fbase%2FReferenceResolverBase.java;h=33b5d9bdcf424675a281c2279892a489a9ba8ebe;hp=7fabc6747f1c6fe27676fb7483bcad942b928408;hb=bb4e04be3cb29a5d08e412cd4eaa90ad0158b954;hpb=a5a5b0f8e0d52f5e400e3857c12fe862dd2e2dd9 diff --git a/bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/ReferenceResolverBase.java b/bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/ReferenceResolverBase.java index 7fabc6747..33b5d9bdc 100644 --- a/bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/ReferenceResolverBase.java +++ b/bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/ReferenceResolverBase.java @@ -8,6 +8,8 @@ import java.util.Collections; import org.simantics.databoard.util.URIStringUtils; import org.simantics.structural.synchronization.protocol.SynchronizationEventHandler; +import org.simantics.structural.synchronization.utils.ComponentBase; +import org.simantics.structural.synchronization.utils.Solver; import org.slf4j.Logger; abstract public class ReferenceResolverBase> { @@ -116,7 +118,7 @@ abstract public class ReferenceResolverBase> { private static void fullPathOfComponent(StringBuilder b, ComponentBase component) { if(component != null) { - fullPathOfComponent(b, component.parent); + fullPathOfComponent(b, component.getParent()); b.append("/").append(component.solverComponentName); } }