mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 02:28:49 +00:00
fix name
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1442385 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1d92d6f5df
commit
9e0e90b996
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user