We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ebb658 commit 61e89edCopy full SHA for 61e89ed
lucene/core/src/java/org/apache/lucene/util/fst/FST.java
@@ -109,7 +109,8 @@ public enum INPUT_TYPE {
109
private static final String FILE_FORMAT_NAME = "FST";
110
private static final int VERSION_START = 6;
111
private static final int VERSION_LITTLE_ENDIAN = 8;
112
- static final int VERSION_CURRENT = VERSION_LITTLE_ENDIAN;
+ private static final int VERSION_CONTINUOUS_ARCS = 9;
113
+ static final int VERSION_CURRENT = VERSION_CONTINUOUS_ARCS;
114
115
// Never serialized; just used to represent the virtual
116
// final node w/ no arcs:
0 commit comments