Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzardo committed May 29, 2024
1 parent 1dc670c commit dbc0ee4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public Condition.FieldCondition eq(boolean b) {
}

public Condition.FieldCondition eq(Boolean b) {
return new Condition.FieldCondition(this, Condition.Operator.EQ, b, (o, builder) -> builder.setField((Float) o));
return new Condition.FieldCondition(this, Condition.Operator.EQ, b, (o, builder) -> builder.setField((Boolean) o));
}
}

Expand Down

0 comments on commit dbc0ee4

Please sign in to comment.