Skip to content

Commit

Permalink
Consistently reference docsWithField with this.
Browse files Browse the repository at this point in the history
Close #183


git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1689586 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jpountz committed Jul 7, 2015
1 parent 4c5556d commit e746df7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -273,7 +273,7 @@ public void uninvert(LeafReader reader, String field, boolean setDocsWithField)
assert termsDocCount <= maxDoc;
if (termsDocCount == maxDoc) {
// Fast case: all docs have this field:
docsWithField = new Bits.MatchAllBits(maxDoc);
this.docsWithField = new Bits.MatchAllBits(maxDoc);
setDocsWithField = false;
}
}
Expand Down

0 comments on commit e746df7

Please sign in to comment.