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:
parent
6e684dd982
commit
90285d927f
1 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue