git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1442385 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2013-02-04 21:38:54 +00:00
parent 1d92d6f5df
commit 9e0e90b996
2 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,7 @@ final class SegmentCoreReaders {
return dvs;
}
NumericDocValues getSimpleNormValues(String field) throws IOException {
NumericDocValues getNormValues(String field) throws IOException {
FieldInfo fi = fieldInfos.fieldInfo(field);
if (fi == null) {
// Field does not exist

View File

@ -250,7 +250,7 @@ public final class SegmentReader extends AtomicReader {
@Override
public NumericDocValues getNormValues(String field) throws IOException {
ensureOpen();
return core.getSimpleNormValues(field);
return core.getNormValues(field);
}
/**