mirror of https://github.com/apache/lucene.git
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:
parent
0ce89ebf87
commit
9df0697637
|
@ -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}.
|
||||
|
|
|
@ -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+";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue