forked from jasder/antlr
rm unneeded field
[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 9761]
This commit is contained in:
parent
d01bde9125
commit
3b51bb478d
|
@ -28,11 +28,9 @@
|
|||
*/
|
||||
package org.antlr.v4.runtime.dfa;
|
||||
|
||||
import org.antlr.v4.runtime.atn.ATNConfig;
|
||||
import org.antlr.v4.runtime.atn.ATNState;
|
||||
import org.antlr.v4.runtime.misc.NotNull;
|
||||
import org.antlr.v4.runtime.misc.Nullable;
|
||||
import org.antlr.v4.runtime.misc.OrderedHashSet;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
@ -54,7 +52,7 @@ public class DFA {
|
|||
/** Set of configs for a DFA state with at least one conflict? Mainly used as "return value"
|
||||
* from predictATN() for retry.
|
||||
*/
|
||||
public OrderedHashSet<ATNConfig> conflictSet;
|
||||
// public OrderedHashSet<ATNConfig> conflictSet;
|
||||
|
||||
public DFA(@NotNull ATNState atnStartState) { this.atnStartState = atnStartState; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue