Skip to content

Commit e1dda03

Browse files
committed
deleted unused constructor
1 parent 07bfcee commit e1dda03

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/java/net/itarray/automotion/internal/properties/BinaryScalarConditionWithFixedOperand.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ public class BinaryScalarConditionWithFixedOperand implements Condition<Scalar>
1818
private final ContextBiFunction<Scalar, Scalar, Boolean> contextPredicate;
1919
private final String toStringFormat;
2020

21-
22-
public BinaryScalarConditionWithFixedOperand(Expression<Scalar> fixedOperand, BiPredicate<Scalar, Scalar> predicate, String toStringFormat) {
23-
this(fixedOperand, (left, right, context) -> predicate.test(left, right), toStringFormat);
24-
}
25-
2621
public BinaryScalarConditionWithFixedOperand(Expression<Scalar> fixedOperand, ContextBiFunction<Scalar, Scalar, Boolean> contextPredicate, String toStringFormat) {
2722
this.fixedOperand = fixedOperand;
2823
this.contextPredicate = contextPredicate;

0 commit comments

Comments
 (0)