mirror of https://github.com/apache/lucene.git
Fix default alphabetSize of NFARunAutomaton (#559)
This commit is contained in:
parent
0a28fd8b9e
commit
8f99c12113
|
@ -54,7 +54,7 @@ public class NFARunAutomaton implements ByteRunnable, TransitionAccessor {
|
|||
* better efficiency
|
||||
*/
|
||||
public NFARunAutomaton(Automaton automaton) {
|
||||
this(automaton, Character.MAX_CODE_POINT);
|
||||
this(automaton, Character.MAX_CODE_POINT + 1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue