mirror of https://github.com/apache/lucene.git
fix bug in version incr
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3069@1516869 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1621816d81
commit
8d0d29ff40
|
@ -61,7 +61,7 @@ public final class PulsingPostingsWriter extends PostingsWriterBase {
|
|||
// change VERSION_CURRENT to point to your new version:
|
||||
final static int VERSION_START = 0;
|
||||
|
||||
final static int VERSION_META_ARRAY = 0;
|
||||
final static int VERSION_META_ARRAY = 1;
|
||||
|
||||
final static int VERSION_CURRENT = VERSION_META_ARRAY;
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ public final class TempPulsingPostingsWriter extends TempPostingsWriterBase {
|
|||
// change VERSION_CURRENT to point to your new version:
|
||||
final static int VERSION_START = 0;
|
||||
|
||||
final static int VERSION_META_ARRAY = 0;
|
||||
final static int VERSION_META_ARRAY = 1;
|
||||
|
||||
final static int VERSION_CURRENT = VERSION_META_ARRAY;
|
||||
|
||||
|
|
Loading…
Reference in New Issue