Removed unused imports

This commit is contained in:
Brian Woolfolk 2024-10-28 10:04:25 -07:00
parent 5b31a916fb
commit 7934a3e2e1
1 changed files with 2 additions and 4 deletions

View File

@ -21,8 +21,6 @@ import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Objects;
import java.util.function.LongPredicate;
import org.apache.lucene.document.IntPoint;
import org.apache.lucene.document.LongPoint;
import org.apache.lucene.index.DocValues;
import org.apache.lucene.index.DocValuesSkipper;
import org.apache.lucene.index.LeafReader;
@ -304,8 +302,8 @@ public class IndexSortSortedNumericDocValuesRangeQuery extends Query {
}
}
private static int nextDocSkipper(int startDoc, NumericDocValues docValues, LongPredicate predicate)
throws IOException {
private static int nextDocSkipper(
int startDoc, NumericDocValues docValues, LongPredicate predicate) throws IOException {
int doc = docValues.docID();
if (startDoc > doc) {
doc = docValues.advance(startDoc);