mirror of https://github.com/apache/lucene.git
add missing override to test class
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1601355 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f205a8bc19
commit
86311123d3
|
@ -131,6 +131,11 @@ public final class FieldFilterAtomicReader extends FilterAtomicReader {
|
|||
public SortedDocValues getSortedDocValues(String field) throws IOException {
|
||||
return hasField(field) ? super.getSortedDocValues(field) : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SortedSetDocValues getSortedSetDocValues(String field) throws IOException {
|
||||
return hasField(field) ? super.getSortedSetDocValues(field) : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public NumericDocValues getNormValues(String field) throws IOException {
|
||||
|
|
Loading…
Reference in New Issue