]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor/ReplaceTabsBySpaces.java
Externalize strings in org.simantics.scl.ui
[simantics/platform.git] / bundles / org.simantics.scl.ui / src / org / simantics / scl / ui / editor / ReplaceTabsBySpaces.java
index a01295dcbfdce20003b302662a77425ebe67434f..08e403a69c5c0d2f39647ae9a18ba287611f0488 100644 (file)
@@ -8,7 +8,7 @@ public class ReplaceTabsBySpaces implements IAutoEditStrategy {
 
        public void customizeDocumentCommand(IDocument d, DocumentCommand c) {
                if (c.length == 0 && c.text != null && c.text.indexOf('\t') >= 0) {
-                       c.text = c.text.replace("\t", "    ");
+                       c.text = c.text.replace("\t", "    "); //$NON-NLS-1$ //$NON-NLS-2$
                }               
        }