Skip to content

Commit

Permalink
Fixes Map type in order to reflect HstoreHelper.toString() signature
Browse files Browse the repository at this point in the history
change.
  • Loading branch information
manuelvio committed Feb 12, 2014
1 parent 5b3409a commit 92adee9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ public class PgHstoreOperatorExpression implements Criterion {
private static final long serialVersionUID = 2872183637309166619L;

private final String propertyName;
private final Map<String,String> value;
private final Map<Object,String> value;
private final String operator;

private static final TypedValue[] NO_VALUES = new TypedValue[0];

protected PgHstoreOperatorExpression(String propertyName, Map<String,String> value, String operator) {
protected PgHstoreOperatorExpression(String propertyName, Map<Object,String> value, String operator) {
this.propertyName = propertyName;
this.value = value;
this.operator = operator;
Expand Down

0 comments on commit 92adee9

Please sign in to comment.