1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +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(); byte byteValue = (byte)value.byteValue();
switch (byteValue) { switch (byteValue) {
case '\b': case '\b':
return "'\\b'"; return "'\\b'"; //$NON-NLS-1$
case '\t': case '\t':
return "'\\t'"; return "'\\t'"; //$NON-NLS-1$
case '\n': case '\n':
return "'\\n'"; return "'\\n'"; //$NON-NLS-1$
case '\f': case '\f':
return "'\\f'"; return "'\\f'"; //$NON-NLS-1$
case '\r': case '\r':
return "'\\r'"; return "'\\r'"; //$NON-NLS-1$
} }
if (Character.isISOControl(byteValue) || byteValue < 0) if (Character.isISOControl(byteValue) || byteValue < 0)