File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/main/java/org/mybatis/dynamic/sql/where Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1515 */
1616package org .mybatis .dynamic .sql .where ;
1717
18+ import org .mybatis .dynamic .sql .common .AbstractBooleanExpressionDSL ;
19+
1820import java .util .function .Consumer ;
1921
2022@ FunctionalInterface
21- public interface WhereApplier extends Consumer <AbstractWhereDSL <?>> {
23+ public interface WhereApplier {
24+
25+ void accept (AbstractWhereDSL <?> abstractWhereDSL );
26+
2227 /**
2328 * Return a composed where applier that performs this operation followed by the after operation.
2429 *
@@ -27,7 +32,7 @@ public interface WhereApplier extends Consumer<AbstractWhereDSL<?>> {
2732 *
2833 * @return a composed where applier that performs this operation followed by the after operation.
2934 */
30- default WhereApplier andThen (WhereApplier after ) {
35+ default WhereApplier andThen (Consumer < AbstractBooleanExpressionDSL <?>> after ) {
3136 return t -> {
3237 accept (t );
3338 after .accept (t );
You can’t perform that action at this time.
0 commit comments