mirror of https://github.com/apache/lucene.git
LUCENE-3661: remove bitvector from string
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3661@1233531 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cfdd1f1c2d
commit
2227b6e668
|
@ -135,7 +135,7 @@ public final class SegmentReader extends IndexReader {
|
|||
|
||||
// Verify our docCount matches:
|
||||
assert numDocs == count :
|
||||
"delete count mismatch: numDocs=" + numDocs + " vs BitVector=" + (si.docCount-count);
|
||||
"delete count mismatch: numDocs=" + numDocs + " vs MutableBits=" + (si.docCount-count);
|
||||
|
||||
assert isNRT || si.docCount - si.getDelCount() == count :
|
||||
"si.docCount=" + si.docCount + "si.getDelCount()=" + si.getDelCount() + " recomputedCount=" + count;
|
||||
|
|
Loading…
Reference in New Issue