LUCENE-4055: remove dead code

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4055@1342448 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-05-24 21:41:14 +00:00
parent 0ce89ebf87
commit 9df0697637
2 changed files with 0 additions and 8 deletions

View File

@ -97,10 +97,6 @@ public abstract class PerDocProducerBase extends PerDocProducer {
public static String docValuesId(String segmentsName, int fieldId) {
return segmentsName + "_" + fieldId;
}
public static String docValuesRegex(String segmentsName) {
return segmentsName + "_\\d+";
}
/**
* Loads a {@link DocValues} instance depending on the given {@link Type}.

View File

@ -59,8 +59,4 @@ class SimpleTextPerDocConsumer extends PerDocConsumer {
static String docValuesId(String segmentsName, int fieldId) {
return segmentsName + "_" + fieldId;
}
static String docValuesIdRegexp(String segmentsName) {
return segmentsName + "_\\d+";
}
}