1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Adjusted error message.

This commit is contained in:
Sergey Prigogin 2011-03-29 06:36:27 +00:00
parent eeb3c6825a
commit adcb6b9e67

View file

@ -1610,7 +1610,8 @@ public class Scribe {
pendingSpace= false;
needSpace= true;
throw new AbortFormatting(
"[" + (line + 1) + "/" + column + "] unexpected token type, expecting:" + expectedTokenType + ", actual:" + currentToken);//$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$
"[" + (line + 1) + "/" + column + "] Unexpected token type, expecting:" + //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$
expectedTokenType + ", actual:" + currentToken);//$NON-NLS-1$
}
print(currentToken.getLength(), considerSpaceIfAny);
} finally {