wrong method signature: RangeFilterBuilder and NumericRangeFilterBuilder, closes #1244.
This commit is contained in:
parent
d92dc36213
commit
11bdad1338
|
@ -274,7 +274,7 @@ public class NumericRangeFilterBuilder extends BaseFilterBuilder {
|
|||
/**
|
||||
* The to part of the filter query. Null indicates unbounded.
|
||||
*/
|
||||
public NumericRangeFilterBuilder lte(String to) {
|
||||
public NumericRangeFilterBuilder lte(Object to) {
|
||||
this.to = to;
|
||||
this.includeUpper = true;
|
||||
return this;
|
||||
|
|
|
@ -269,15 +269,6 @@ public class RangeFilterBuilder extends BaseFilterBuilder {
|
|||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The to part of the filter query. Null indicates unbounded.
|
||||
*/
|
||||
public RangeFilterBuilder lte(String to) {
|
||||
this.to = to;
|
||||
this.includeUpper = true;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The to part of the filter query. Null indicates unbounded.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue