query syntax sugar fix in 'in()' operator

This commit is contained in:
Albert Shift 2015-06-14 14:07:11 -07:00
parent 66ccb0feb1
commit c1ca49fbea

View file

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