X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2FExplorerState.java;h=1e02fe034eee88b8b4a7ee8c186f9e0d0f3f915f;hp=b7d152c99ce30b2a99e25d849d2f1ca75727089c;hb=1fe7ef332a6f996a13b4dda38bc85a743a154baa;hpb=662ee6d0e68c386fdbc22300bdadb58d61de5b17 diff --git a/bundles/org.simantics.browsing.ui/src/org/simantics/browsing/ui/ExplorerState.java b/bundles/org.simantics.browsing.ui/src/org/simantics/browsing/ui/ExplorerState.java index b7d152c99..1e02fe034 100644 --- a/bundles/org.simantics.browsing.ui/src/org/simantics/browsing/ui/ExplorerState.java +++ b/bundles/org.simantics.browsing.ui/src/org/simantics/browsing/ui/ExplorerState.java @@ -64,7 +64,7 @@ public class ExplorerState { */ public ExplorerState(NodeContext[] topNodePath, int[] topNodePathChildIndex, Collection expandedNodes, Map columnWidths) { if (expandedNodes == null) - throw new IllegalArgumentException("null expanded nodes"); + throw new IllegalArgumentException("null expanded nodes"); //$NON-NLS-1$ this.topNodePath = topNodePath; this.topNodePathChildIndex = topNodePathChildIndex; this.expandedNodes = expandedNodes; @@ -73,10 +73,10 @@ public class ExplorerState { @Override public String toString() { - return getClass().getSimpleName() + "[topNodePath=" - + Arrays.toString(topNodePath) + ", topNodePathChildIndex=" - + Arrays.toString(topNodePathChildIndex) + ", expandedNodes=" - + expandedNodes + ", " + columnWidths + "]"; + return getClass().getSimpleName() + "[topNodePath=" //$NON-NLS-1$ + + Arrays.toString(topNodePath) + ", topNodePathChildIndex=" //$NON-NLS-1$ + + Arrays.toString(topNodePathChildIndex) + ", expandedNodes=" //$NON-NLS-1$ + + expandedNodes + ", " + columnWidths + "]"; //$NON-NLS-1$ //$NON-NLS-2$ } }