]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor2/OpenSCLDefinition.java
Externalize strings in org.simantics.scl.ui
[simantics/platform.git] / bundles / org.simantics.scl.ui / src / org / simantics / scl / ui / editor2 / OpenSCLDefinition.java
index 33fb30d4be124956e9b8ed76f3e53f90e9e7c010..bb8332a390bd6cb0b3c92e12a0ac3e3bdaa46ea0 100644 (file)
@@ -40,14 +40,14 @@ public class OpenSCLDefinition extends AbstractHandler {
                 return;
             SCLModuleEditorInput input = new StandardSCLModuleEditorInput(moduleName);
             try {
-                SCLModuleEditor2 editor = (SCLModuleEditor2)page.openEditor(input, "org.simantics.scl.ui.editor2");
+                SCLModuleEditor2 editor = (SCLModuleEditor2)page.openEditor(input, "org.simantics.scl.ui.editor2"); //$NON-NLS-1$
                 if(location != Locations.NO_LOCATION) {
                     int begin = Locations.beginOf(location);
                     int end = Locations.endOf(location);
                     editor.selectAndReveal(begin, end-begin);
                 }
             } catch (PartInitException e) {
-                LOGGER.error("", e);
+                LOGGER.error("", e); //$NON-NLS-1$
             }
         };
     }