From a36bc1eeab7f26e17a45432dbca5e417edfe37e2 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sun, 20 Jun 2010 04:28:39 +0000 Subject: [PATCH] Added missing NON-NLS tag. --- .../eclipse/cdt/debug/mi/core/cdi/model/type/ArrayValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;