Skip to content

Commit 8fa3db2

Browse files
committed
Rename
1 parent 483261c commit 8fa3db2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/main/java/org/elasticsearch/index/mapper/blockloader/docvalues/MvMaxIntsFromDocValuesBlockLoader.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ protected AllReader singletonReader(NumericDocValues docValues) {
2929

3030
@Override
3131
protected AllReader sortedReader(SortedNumericDocValues docValues) {
32-
return new MvMinSorted(docValues);
32+
return new MvMaxSorted(docValues);
3333
}
3434

3535
@Override
3636
public String toString() {
3737
return "IntsFromDocValues[" + fieldName + "]";
3838
}
3939

40-
public static class MvMinSorted extends BlockDocValuesReader {
40+
public static class MvMaxSorted extends BlockDocValuesReader {
4141
private final SortedNumericDocValues numericDocValues;
4242

43-
MvMinSorted(SortedNumericDocValues numericDocValues) {
43+
MvMaxSorted(SortedNumericDocValues numericDocValues) {
4444
this.numericDocValues = numericDocValues;
4545
}
4646

0 commit comments

Comments
 (0)