1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +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);
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;