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
|
@ -98,10 +98,6 @@ public abstract class PerDocProducerBase extends PerDocProducer {
|
||||||
return segmentsName + "_" + fieldId;
|
return segmentsName + "_" + fieldId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String docValuesRegex(String segmentsName) {
|
|
||||||
return segmentsName + "_\\d+";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads a {@link DocValues} instance depending on the given {@link Type}.
|
* Loads a {@link DocValues} instance depending on the given {@link Type}.
|
||||||
* Codecs that use different implementations for a certain {@link Type} can
|
* Codecs that use different implementations for a certain {@link Type} can
|
||||||
|
|
|
@ -59,8 +59,4 @@ class SimpleTextPerDocConsumer extends PerDocConsumer {
|
||||||
static String docValuesId(String segmentsName, int fieldId) {
|
static String docValuesId(String segmentsName, int fieldId) {
|
||||||
return segmentsName + "_" + fieldId;
|
return segmentsName + "_" + fieldId;
|
||||||
}
|
}
|
||||||
|
|
||||||
static String docValuesIdRegexp(String segmentsName) {
|
|
||||||
return segmentsName + "_\\d+";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue