Skip to content

Commit 2420c3f

Browse files
javier-godoymlopezFC
authored andcommitted
fix: call apply() instead of transform() in transformNegatedConstraint
Close #109
1 parent 04cda88 commit 2420c3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend-core-data-impl/src/main/java/com/flowingcode/backendcore/dao/jpa/ConstraintTransformerJpaImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private static Class<?> boxed(Class<?> type) {
110110

111111
@Override
112112
protected Predicate transformNegatedConstraint(NegatedConstraint c) {
113-
return criteriaBuilder.not(transform(c.getConstraint()));
113+
return criteriaBuilder.not(apply(c.getConstraint()));
114114
}
115115

116116
@Override

0 commit comments

Comments
 (0)