mirror of https://github.com/apache/lucene.git
Rename docValues to values
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1301236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9276e43685
commit
aa83c232a7
|
@ -38,7 +38,6 @@ public class FunctionFirstPassGroupingCollector extends AbstractFirstPassGroupin
|
|||
private final ValueSource groupByVS;
|
||||
private final Map<?, ?> vsContext;
|
||||
|
||||
private FunctionValues docValues;
|
||||
private FunctionValues.ValueFiller filler;
|
||||
private MutableValue mval;
|
||||
|
||||
|
@ -80,8 +79,8 @@ public class FunctionFirstPassGroupingCollector extends AbstractFirstPassGroupin
|
|||
@Override
|
||||
public void setNextReader(AtomicReaderContext readerContext) throws IOException {
|
||||
super.setNextReader(readerContext);
|
||||
docValues = groupByVS.getValues(vsContext, readerContext);
|
||||
filler = docValues.getValueFiller();
|
||||
FunctionValues values = groupByVS.getValues(vsContext, readerContext);
|
||||
filler = values.getValueFiller();
|
||||
mval = filler.getValue();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue