mirror of https://github.com/apache/lucene.git
Consistently reference docsWithField with `this`.
Close #183 git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1689586 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
676accb5f4
commit
3556eb70ed
|
@ -273,7 +273,7 @@ class FieldCacheImpl implements FieldCache {
|
|||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue