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() {
149149 }
150150
151151 protected WhereModel buildWhereModel () {
152- return buildModel ();
152+ return super . buildModel ();
153153 }
154154 }
155155}
Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ protected QueryExpressionWhereBuilder getThis() {
336336 }
337337
338338 protected WhereModel buildWhereModel () {
339- return buildModel ();
339+ return super . buildModel ();
340340 }
341341 }
342342
@@ -624,7 +624,7 @@ protected QueryExpressionHavingBuilder getThis() {
624624 }
625625
626626 protected HavingModel buildHavingModel () {
627- return buildModel ();
627+ return super . buildModel ();
628628 }
629629 }
630630}
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ public class WhereDSL extends AbstractWhereStarter<WhereDSL.StandaloneWhereFinis
2626 private StandaloneWhereFinisher whereBuilder ;
2727 private final StatementConfiguration statementConfiguration = new StatementConfiguration ();
2828
29- public WhereDSL () { }
30-
3129 @ Override
3230 public StandaloneWhereFinisher where () {
3331 if (whereBuilder == null ) {
You can’t perform that action at this time.
0 commit comments