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 15
15
*/
16
16
package org .mybatis .dynamic .sql .where ;
17
17
18
+ import org .mybatis .dynamic .sql .common .AbstractBooleanExpressionDSL ;
19
+
18
20
import java .util .function .Consumer ;
19
21
20
22
@ FunctionalInterface
21
- public interface WhereApplier extends Consumer <AbstractWhereDSL <?>> {
23
+ public interface WhereApplier {
24
+
25
+ void accept (AbstractWhereDSL <?> abstractWhereDSL );
26
+
22
27
/**
23
28
* Return a composed where applier that performs this operation followed by the after operation.
24
29
*
@@ -27,7 +32,7 @@ public interface WhereApplier extends Consumer<AbstractWhereDSL<?>> {
27
32
*
28
33
* @return a composed where applier that performs this operation followed by the after operation.
29
34
*/
30
- default WhereApplier andThen (WhereApplier after ) {
35
+ default WhereApplier andThen (Consumer < AbstractBooleanExpressionDSL <?>> after ) {
31
36
return t -> {
32
37
accept (t );
33
38
after .accept (t );
You can’t perform that action at this time.
0 commit comments