Skip to main content
summaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorSergey Prigogin2010-06-20 04:28:39 +0000
committerSergey Prigogin2010-06-20 04:28:39 +0000
commita36bc1eeab7f26e17a45432dbca5e417edfe37e2 (patch)
treeaf6cf7d9a7f32658b02c8233572a461686569e24 /debug
parent4da85f4e4d42e925d18e937f78a2122a18fa8546 (diff)
downloadorg.eclipse.cdt-a36bc1eeab7f26e17a45432dbca5e417edfe37e2.tar.gz
org.eclipse.cdt-a36bc1eeab7f26e17a45432dbca5e417edfe37e2.tar.xz
org.eclipse.cdt-a36bc1eeab7f26e17a45432dbca5e417edfe37e2.zip
Added missing NON-NLS tag.
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/type/ArrayValue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/type/ArrayValue.java b/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/type/ArrayValue.java
index 6b44b77f88f..f1e7afc5a00 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/type/ArrayValue.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/cdi/org/eclipse/cdt/debug/mi/core/cdi/model/type/ArrayValue.java
@@ -45,7 +45,7 @@ public class ArrayValue extends DerivedValue implements ICDIArrayValue, ICDIPoin
super(v);
if (hexAddress == null || hexAddress.trim().length()==0) {
return;
- } else if (hexAddress.startsWith("0x") || hexAddress.startsWith("0X")) {
+ } else if (hexAddress.startsWith("0x") || hexAddress.startsWith("0X")) { //$NON-NLS-1$ //$NON-NLS-2$
this.hexAddress = hexAddress.substring(2);
} else {
this.hexAddress = hexAddress;

Back to the top