mirror of https://github.com/apache/lucene.git
LUCENE-10279: add entry in CHANGES.txt and make RangeClause final (#507)
This commit is contained in:
parent
a26ea57ec7
commit
ec7a79eb56
|
@ -84,7 +84,8 @@ Optimizations
|
|||
|
||||
Bug Fixes
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
* LUCENE-10279: Fix equals in MultiRangeQuery. (Ignacio Vera)
|
||||
|
||||
Other
|
||||
---------------------
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.apache.lucene.util.DocIdSetBuilder;
|
|||
*/
|
||||
public abstract class MultiRangeQuery extends Query {
|
||||
/** Representation of a single clause in a MultiRangeQuery */
|
||||
public static class RangeClause {
|
||||
public static final class RangeClause {
|
||||
byte[] lowerValue;
|
||||
byte[] upperValue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue