v4: specify generic type

[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 9439]
This commit is contained in:
sharwell 2011-11-22 16:38:42 -08:00
parent cf0d47c8fe
commit 22edf77263
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ import java.util.*;
public abstract class Recognizer<Symbol, ATNInterpreter extends ATNSimulator> {
public static final int EOF=-1;
protected ANTLRErrorStrategy<Symbol> _errHandler = new DefaultErrorStrategy();
protected ANTLRErrorStrategy<Symbol> _errHandler = new DefaultErrorStrategy<Symbol>();
private List<ANTLRErrorListener<Symbol>> _listeners;