Rename docvalues to values

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1301234 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Martijn van Groningen 2012-03-15 22:06:22 +00:00
parent 2e132e006a
commit 9276e43685
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ public class FunctionAllGroupsCollector extends AbstractAllGroupsCollector<Mutab
* {@inheritDoc}
*/
public void setNextReader(AtomicReaderContext context) throws IOException {
FunctionValues docValues = groupBy.getValues(vsContext, context);
filler = docValues.getValueFiller();
FunctionValues values = groupBy.getValues(vsContext, context);
filler = values.getValueFiller();
mval = filler.getValue();
}
}