jpountz commented on code in PR #13971:
URL: https://github.com/apache/lucene/pull/13971#discussion_r1827427614
##########
lucene/core/src/java/org/apache/lucene/util/IntArrayDocIdSet.java:
##########
@@ -34,23 +34,15 @@ public final class IntArrayDocIdSet extends DocIdSet {
private final int[] docs;
private final int length;
- /**
- * Build an IntArrayDocIdSet by an int array and len.
- *
- * @param docs A docs array whose length need to be greater than the param
len. It needs to be
- * sorted from 0(inclusive) to the len(exclusive), and the len-th doc in
docs need to be
- * {@link DocIdSetIterator#NO_MORE_DOCS}.
- * @param len The valid docs length in array.
- */
- public IntArrayDocIdSet(int[] docs, int len) {
- if (docs[len] != DocIdSetIterator.NO_MORE_DOCS) {
+ public IntArrayDocIdSet(int[] docs, int length) {
Review Comment:
Could you add a pkg-private copy of it next to `TestBooleanOr` maybe?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]