Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2010-07-15 14:35:58 +0000
committerAndrew Gvozdev2010-07-15 14:35:58 +0000
commit0d1338e5027c8327c383baa60dbbe5676a598eee (patch)
tree8c7d61d86adf3e8bb0bcf166fdaeee83e4ebd415 /build/org.eclipse.cdt.managedbuilder.gnu.ui/src
parent874bc5564a7e8951021d4c154f43f13992c11cda (diff)
downloadorg.eclipse.cdt-0d1338e5027c8327c383baa60dbbe5676a598eee.tar.gz
org.eclipse.cdt-0d1338e5027c8327c383baa60dbbe5676a598eee.tar.xz
org.eclipse.cdt-0d1338e5027c8327c383baa60dbbe5676a598eee.zip
bug 319748: Missing/unnecessary $NON-NLS$ tags
patch from Petri Tuononen
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.gnu.ui/src')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/src/org/eclipse/cdt/managedbuilder/gnu/templates/SimpleMakefileGenerator.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/src/org/eclipse/cdt/managedbuilder/gnu/templates/SimpleMakefileGenerator.java b/build/org.eclipse.cdt.managedbuilder.gnu.ui/src/org/eclipse/cdt/managedbuilder/gnu/templates/SimpleMakefileGenerator.java
index 6dde9a9aab3..20f467190fc 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/src/org/eclipse/cdt/managedbuilder/gnu/templates/SimpleMakefileGenerator.java
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/src/org/eclipse/cdt/managedbuilder/gnu/templates/SimpleMakefileGenerator.java
@@ -77,7 +77,7 @@ public class SimpleMakefileGenerator extends ProcessRunner {
}
Map macros = new HashMap(template.getValueStore());
- macros.put("exe", Platform.getOS().equals(Platform.OS_WIN32) ? ".exe" : ""); //$NON-NLS-1$ $NON-NLS-2$ $NON-NLS-3$
+ macros.put("exe", Platform.getOS().equals(Platform.OS_WIN32) ? ".exe" : ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
fileContents = replaceMacros(fileContents, macros);
contents = new ByteArrayInputStream(fileContents.getBytes());
@@ -95,8 +95,8 @@ public class SimpleMakefileGenerator extends ProcessRunner {
}
}
- private static final String START = "{{";
- private static final String END = "}}";
+ private static final String START = "{{"; //$NON-NLS-1$
+ private static final String END = "}}"; //$NON-NLS-1$
private String replaceMacros(String fileContents, Map valueStore) {
StringBuffer buffer = new StringBuffer(fileContents);

Back to the top