Skip to content

Commit

Permalink
make FastFieldRangeWeight::new pub (#2460)
Browse files Browse the repository at this point in the history
  • Loading branch information
PSeitz committed Jul 29, 2024
1 parent 7ebcc15 commit d8843c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/range_query/range_query_u64_fastfield.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub struct FastFieldRangeWeight {

impl FastFieldRangeWeight {
/// Create a new FastFieldRangeWeight
pub(crate) fn new(field: Field, lower_bound: Bound<Term>, upper_bound: Bound<Term>) -> Self {
pub fn new(field: Field, lower_bound: Bound<Term>, upper_bound: Bound<Term>) -> Self {
Self {
lower_bound,
upper_bound,
Expand Down

0 comments on commit d8843c6

Please sign in to comment.