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:
Han Jiang 2013-08-23 14:44:28 +00:00
parent 1621816d81
commit 8d0d29ff40
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;