query syntax sugar fix in 'in()' operator
This commit is contained in:
parent
66ccb0feb1
commit
c1ca49fbea
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ public final class Query {
|
|||
return Postulate.of(Operator.GTE, val);
|
||||
}
|
||||
|
||||
public static <V> Postulate<V> in(Getter<V> getter, V[] vals) {
|
||||
public static <V> Postulate<V> in(V[] vals) {
|
||||
return new Postulate<V>(Operator.IN, vals);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue