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:
Martijn van Groningen 2012-03-15 22:07:50 +00:00
parent 9276e43685
commit aa83c232a7
1 changed files with 2 additions and 3 deletions

View File

@ -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();
}