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:
Robert Muir 2014-06-09 12:23:28 +00:00
parent f205a8bc19
commit 86311123d3
1 changed files with 5 additions and 0 deletions

View File

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