This commit is contained in:
Terence Parr 2012-02-27 21:32:25 -08:00
parent ae08867ff3
commit 9ae92a5cef
1 changed files with 5 additions and 5 deletions

View File

@ -67,9 +67,9 @@ public interface ANTLRErrorListener<Symbol> {
* surrounding rule.
*/
public <T extends Symbol> void error(Recognizer<T, ?> recognizer,
@Nullable T offendingSymbol,
int line,
int charPositionInLine,
String msg,
@Nullable RecognitionException e);
@Nullable T offendingSymbol,
int line,
int charPositionInLine,
String msg,
@Nullable RecognitionException e);
}