1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Added missing NON-NLS tag.

This commit is contained in:
Sergey Prigogin 2010-06-20 04:28:39 +00:00
parent 4da85f4e4d
commit a36bc1eeab

View file

@ -45,7 +45,7 @@ public class ArrayValue extends DerivedValue implements ICDIArrayValue, ICDIPoin
super(v); super(v);
if (hexAddress == null || hexAddress.trim().length()==0) { if (hexAddress == null || hexAddress.trim().length()==0) {
return; 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); this.hexAddress = hexAddress.substring(2);
} else { } else {
this.hexAddress = hexAddress; this.hexAddress = hexAddress;