File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
src/main/java/org/mybatis/dynamic/sql Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ protected CountWhereBuilder getThis() {
149
149
}
150
150
151
151
protected WhereModel buildWhereModel () {
152
- return buildModel ();
152
+ return super . buildModel ();
153
153
}
154
154
}
155
155
}
Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ protected QueryExpressionWhereBuilder getThis() {
336
336
}
337
337
338
338
protected WhereModel buildWhereModel () {
339
- return buildModel ();
339
+ return super . buildModel ();
340
340
}
341
341
}
342
342
@@ -624,7 +624,7 @@ protected QueryExpressionHavingBuilder getThis() {
624
624
}
625
625
626
626
protected HavingModel buildHavingModel () {
627
- return buildModel ();
627
+ return super . buildModel ();
628
628
}
629
629
}
630
630
}
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ public class WhereDSL extends AbstractWhereStarter<WhereDSL.StandaloneWhereFinis
26
26
private StandaloneWhereFinisher whereBuilder ;
27
27
private final StatementConfiguration statementConfiguration = new StatementConfiguration ();
28
28
29
- public WhereDSL () { }
30
-
31
29
@ Override
32
30
public StandaloneWhereFinisher where () {
33
31
if (whereBuilder == null ) {
You can’t perform that action at this time.
0 commit comments