mirror of https://github.com/apache/lucene.git
LUCENE-7761: Fixed comment in ReqExclScorer.
This commit is contained in:
parent
cccc55c133
commit
602cce304c
|
@ -93,6 +93,9 @@ Other
|
||||||
* LUCENE-7743: Never call new String(String).
|
* LUCENE-7743: Never call new String(String).
|
||||||
(Daniel Jelinski via Adrien Grand)
|
(Daniel Jelinski via Adrien Grand)
|
||||||
|
|
||||||
|
* LUCENE-7761: Fixed comment in ReqExclScorer.
|
||||||
|
(Pablo Pita Leira via Adrien Grand)
|
||||||
|
|
||||||
======================= Lucene 6.5.1 =======================
|
======================= Lucene 6.5.1 =======================
|
||||||
|
|
||||||
Bug Fixes
|
Bug Fixes
|
||||||
|
|
|
@ -154,7 +154,7 @@ class ReqExclScorer extends Scorer {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
// reqTwoPhaseIterator is MORE costly than exclTwoPhaseIterator, check it first
|
// reqTwoPhaseIterator is MORE costly than exclTwoPhaseIterator, check it last
|
||||||
return new TwoPhaseIterator(reqApproximation) {
|
return new TwoPhaseIterator(reqApproximation) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue