rm unneeded override.

This commit is contained in:
Terence Parr 2012-07-09 17:32:20 -07:00
parent 9738658126
commit a3371ac9ea
2 changed files with 0 additions and 4 deletions

View File

@ -125,8 +125,6 @@ public abstract class Lexer extends Recognizer<Integer, LexerATNSimulator>
getInterpreter().reset();
}
public LexerATNSimulator getInterpreter() { return _interp; }
/** Return a token from this source; i.e., match a token on the char
* stream.
*/

View File

@ -124,8 +124,6 @@ public abstract class Parser extends Recognizer<Token, ParserATNSimulator<Token>
}
}
public ParserATNSimulator getInterpreter() { return _interp; }
/** Match current input symbol against ttype. Attempt
* single token insertion or deletion error recovery. If
* that fails, throw MismatchedTokenException.