Skip to content

Commit 61e89ed

Browse files
committed
rebase
1 parent 1ebb658 commit 61e89ed

File tree

1 file changed

+2
-1
lines changed
  • lucene/core/src/java/org/apache/lucene/util/fst

1 file changed

+2
-1
lines changed

lucene/core/src/java/org/apache/lucene/util/fst/FST.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ public enum INPUT_TYPE {
109109
private static final String FILE_FORMAT_NAME = "FST";
110110
private static final int VERSION_START = 6;
111111
private static final int VERSION_LITTLE_ENDIAN = 8;
112-
static final int VERSION_CURRENT = VERSION_LITTLE_ENDIAN;
112+
private static final int VERSION_CONTINUOUS_ARCS = 9;
113+
static final int VERSION_CURRENT = VERSION_CONTINUOUS_ARCS;
113114

114115
// Never serialized; just used to represent the virtual
115116
// final node w/ no arcs:

0 commit comments

Comments
 (0)