]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/ReferenceResolverBase.java
Refactoring of simulator toolkit
[simantics/platform.git] / bundles / org.simantics.structural.synchronization.client / src / org / simantics / structural / synchronization / base / ReferenceResolverBase.java
index 7fabc6747f1c6fe27676fb7483bcad942b928408..33b5d9bdcf424675a281c2279892a489a9ba8ebe 100644 (file)
@@ -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<T extends ComponentBase<T>> {
@@ -116,7 +118,7 @@ abstract public class ReferenceResolverBase<T extends ComponentBase<T>> {
 
     private static void fullPathOfComponent(StringBuilder b, ComponentBase<?> component) {
         if(component != null) {
-            fullPathOfComponent(b, component.parent);
+            fullPathOfComponent(b, component.getParent());
             b.append("/").append(component.solverComponentName);
         }
     }