temporarily commnted out code (to remove the warnings) - this code may get used for error recovery

This commit is contained in:
Andy Clement 2008-08-12 22:13:50 +00:00
parent a9f2c90f10
commit f9285d54ab
2 changed files with 10 additions and 10 deletions

View File

@ -72,10 +72,10 @@ public class SpringExpressionsLexerExtender extends SpringExpressionsLexer {
// by the recover() method above.
}
private String getTokenForId(int id) {
if (id == -1)
return "EOF";
return getTokenNames()[id];
}
// private String getTokenForId(int id) {
// if (id == -1)
// return "EOF";
// return getTokenNames()[id];
// }
}

View File

@ -68,10 +68,10 @@ public class SpringExpressionsParserExtender extends SpringExpressionsParser {
return super.getTokenErrorDisplay(t);
}
private String getTokenForId(int id) {
if (id == -1)
return "EOF";
return getTokenNames()[id];
}
// private String getTokenForId(int id) {
// if (id == -1)
// return "EOF";
// return getTokenNames()[id];
// }
}