Skip to content

Commit

Permalink
wrong method signature: RangeFilterBuilder and NumericRangeFilterBuil…
Browse files Browse the repository at this point in the history
…der, closes #1244.
  • Loading branch information
kimchy committed Aug 14, 2011
1 parent d92dc36 commit 11bdad1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Expand Up @@ -274,7 +274,7 @@ public NumericRangeFilterBuilder lt(double to) {
/**
* 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;
Expand Down
Expand Up @@ -269,15 +269,6 @@ public RangeFilterBuilder lt(double to) {
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.
*/
Expand Down

0 comments on commit 11bdad1

Please sign in to comment.