1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Add $NON-NLS-1$ comments to last commit

This commit is contained in:
John Cortell 2009-01-22 20:59:34 +00:00
parent 6e684dd982
commit 90285d927f

View file

@ -278,15 +278,15 @@ public class CValue extends AbstractCValue {
byte byteValue = (byte)value.byteValue();
switch (byteValue) {
case '\b':
return "'\\b'";
return "'\\b'"; //$NON-NLS-1$
case '\t':
return "'\\t'";
return "'\\t'"; //$NON-NLS-1$
case '\n':
return "'\\n'";
return "'\\n'"; //$NON-NLS-1$
case '\f':
return "'\\f'";
return "'\\f'"; //$NON-NLS-1$
case '\r':
return "'\\r'";
return "'\\r'"; //$NON-NLS-1$
}
if (Character.isISOControl(byteValue) || byteValue < 0)