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