wrong method signature: RangeFilterBuilder and NumericRangeFilterBuilder, closes #1244.

This commit is contained in:
Shay Banon 2011-08-15 00:06:26 +03:00
parent d92dc36213
commit 11bdad1338
2 changed files with 1 additions and 10 deletions

View File

@ -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;

View File

@ -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.
*/