nuke nocommits

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1436635 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2013-01-21 21:41:17 +00:00
parent 16520a097d
commit 5aa2b41499
1 changed files with 2 additions and 10 deletions

View File

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