Rename docValues to values

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

View File

@ -77,8 +77,8 @@ public class FunctionSecondPassGroupingCollector extends AbstractSecondPassGroup
*/
public void setNextReader(AtomicReaderContext readerContext) throws IOException {
super.setNextReader(readerContext);
FunctionValues docValues = groupByVS.getValues(vsContext, readerContext);
filler = docValues.getValueFiller();
FunctionValues values = groupByVS.getValues(vsContext, readerContext);
filler = values.getValueFiller();
mval = filler.getValue();
}