mirror of https://github.com/apache/lucene.git
LUCENE-2649: fix backwards params to checkMatchAllBits
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1021761 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
60c3278f9a
commit
ccf58605e9
|
@ -100,7 +100,7 @@ public abstract class CachedArrayCreator<T extends CachedArray> extends EntryCre
|
|||
/**
|
||||
* Utility function to help check what bits are valid
|
||||
*/
|
||||
protected Bits checkMatchAllBits( Bits deleted, OpenBitSet valid, int maxDocs, int numDocs )
|
||||
protected Bits checkMatchAllBits( Bits deleted, OpenBitSet valid, int numDocs, int maxDocs )
|
||||
{
|
||||
if( numDocs != maxDocs ) {
|
||||
if( hasOption( OPTION_CACHE_BITS ) ) {
|
||||
|
|
Loading…
Reference in New Issue