You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/11/09 19:17:17 UTC

svn commit: r1407573 - in /lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene: codecs/SimpleDocValuesFormat.java index/SortedBytesDVWriter.java

Author: mikemccand
Date: Fri Nov  9 18:17:16 2012
New Revision: 1407573

URL: http://svn.apache.org/viewvc?rev=1407573&view=rev
Log:
start at ST producer

Modified:
    lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/codecs/SimpleDocValuesFormat.java
    lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedBytesDVWriter.java

Modified: lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/codecs/SimpleDocValuesFormat.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/codecs/SimpleDocValuesFormat.java?rev=1407573&r1=1407572&r2=1407573&view=diff
==============================================================================
--- lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/codecs/SimpleDocValuesFormat.java (original)
+++ lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/codecs/SimpleDocValuesFormat.java Fri Nov  9 18:17:16 2012
@@ -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 SimpleDocValuesFor
 
   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;
 }

Modified: lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedBytesDVWriter.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedBytesDVWriter.java?rev=1407573&r1=1407572&r2=1407573&view=diff
==============================================================================
--- lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedBytesDVWriter.java (original)
+++ lucene/dev/branches/lucene4547/lucene/core/src/java/org/apache/lucene/index/SortedBytesDVWriter.java Fri Nov  9 18:17:16 2012
@@ -142,4 +142,4 @@ class SortedBytesDVWriter {
     fixedLength = -2;
     maxLength = 0;
   }
-}
\ No newline at end of file
+}