mirror of https://github.com/apache/lucene.git
start at ST producer
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1407573 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e2beb69353
commit
1e586a67e3
|
@ -19,6 +19,7 @@ package org.apache.lucene.codecs;
|
|||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.apache.lucene.index.SegmentReadState;
|
||||
import org.apache.lucene.index.SegmentWriteState;
|
||||
|
||||
public abstract class SimpleDocValuesFormat {
|
||||
|
@ -30,5 +31,5 @@ public abstract class SimpleDocValuesFormat {
|
|||
|
||||
public abstract SimpleDVConsumer fieldsConsumer(SegmentWriteState state) throws IOException;
|
||||
// nocommit do this:
|
||||
//public abstract SimpleDVProducer fieldsProducer(SegmentReadState state) throws IOException;
|
||||
public abstract PerDocProducer fieldsProducer(SegmentReadState state) throws IOException;
|
||||
}
|
||||
|
|
|
@ -142,4 +142,4 @@ class SortedBytesDVWriter {
|
|||
fixedLength = -2;
|
||||
maxLength = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue