mirror of https://github.com/apache/lucene.git
Corrected same-argument assertion.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/solr7787@1691415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4404d92e48
commit
85afee91b7
|
@ -327,7 +327,7 @@ public class FullHLLTest extends LuceneTestCase {
|
|||
*/
|
||||
private static void assertElementsEqual(final HLL hllA, final HLL hllB) {
|
||||
final BitVector bitVectorA = hllA.probabilisticStorage;
|
||||
final BitVector bitVectorB = hllA.probabilisticStorage;
|
||||
final BitVector bitVectorB = hllB.probabilisticStorage;
|
||||
|
||||
final LongIterator iterA = bitVectorA.registerIterator();
|
||||
final LongIterator iterB = bitVectorB.registerIterator();
|
||||
|
|
Loading…
Reference in New Issue