From 5aa2b414995329a506038fbc5336be2ab626d15b Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Mon, 21 Jan 2013 21:41:17 +0000 Subject: [PATCH] nuke nocommits git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1436635 13f79535-47bb-0310-9956-ffa450edef68 --- .../codecs/simpletext/SimpleTextDocValuesFormat.java | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/lucene/codecs/src/java/org/apache/lucene/codecs/simpletext/SimpleTextDocValuesFormat.java b/lucene/codecs/src/java/org/apache/lucene/codecs/simpletext/SimpleTextDocValuesFormat.java index 2d0e1a3278b..ac5406e6abb 100644 --- a/lucene/codecs/src/java/org/apache/lucene/codecs/simpletext/SimpleTextDocValuesFormat.java +++ b/lucene/codecs/src/java/org/apache/lucene/codecs/simpletext/SimpleTextDocValuesFormat.java @@ -135,8 +135,7 @@ public class SimpleTextDocValuesFormat extends DocValuesFormat { * the reader can just scan this file when it opens, skipping over the data blocks * and saving the offset/etc for each field. */ - // nocommit not public - public static class SimpleTextDocValuesWriter extends DocValuesConsumer { + static class SimpleTextDocValuesWriter extends DocValuesConsumer { final IndexOutput data; final BytesRef scratch = new BytesRef(); final int numDocs; @@ -371,17 +370,10 @@ public class SimpleTextDocValuesFormat extends DocValuesFormat { } }; - // nocommit once we do "in ram cache of direct source" - // ... and hopeuflly under SCR control ... then if app - // asks for direct soruce but it was already cached in ram - // ... we should use the ram cached one! we don't do this - // correctly today ... - // nocommit make sure we test "all docs have 0 value", // "all docs have empty BytesREf" - // nocommit not public - public static class SimpleTextDocValuesReader extends DocValuesProducer { + static class SimpleTextDocValuesReader extends DocValuesProducer { static class OneField { FieldInfo fieldInfo;