X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.debug.ui%2Fsrc%2Forg%2Fsimantics%2Fdebug%2Fui%2FVariableDebugger.java;fp=bundles%2Forg.simantics.debug.ui%2Fsrc%2Forg%2Fsimantics%2Fdebug%2Fui%2FVariableDebugger.java;h=285b41ee3780d088c568f9d10123a38dbbe03c9a;hb=1f8b50d81a1aa1bbd67a77f7cbc1060f2eb805d4;hp=a27cd30837e061c9642823891fedddbc60bb6e27;hpb=86bb6157fdcb4a11caee57487cf8fa894eaae2dd;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/VariableDebugger.java b/bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/VariableDebugger.java index a27cd3083..285b41ee3 100644 --- a/bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/VariableDebugger.java +++ b/bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/VariableDebugger.java @@ -560,7 +560,10 @@ public class VariableDebugger extends Composite { if(o instanceof Connection) { Connection c = (Connection)o; ArrayList result = new ArrayList(); - for(VariableConnectionPointDescriptor v : c.getConnectionPointDescriptors(graph, base, null)) { + System.err.println("base: " + base.getURI(graph)); + for(VariableConnectionPointDescriptor v : c.getConnectionPointDescriptors(graph, base.getParent(graph), null)) { + Variable asd = v.getVariable(graph); + System.err.println("spadopo " + asd.getURI(graph)); result.add(v.getRelativeRVI(graph, base)); } return "c " + result.toString();