@@ -95,16 +95,12 @@ public abstract sealed class Collection
95
95
96
96
private String customSQLInsert ;
97
97
private boolean customInsertCallable ;
98
- private ExecuteUpdateResultCheckStyle insertCheckStyle ;
99
98
private String customSQLUpdate ;
100
99
private boolean customUpdateCallable ;
101
- private ExecuteUpdateResultCheckStyle updateCheckStyle ;
102
100
private String customSQLDelete ;
103
101
private boolean customDeleteCallable ;
104
- private ExecuteUpdateResultCheckStyle deleteCheckStyle ;
105
102
private String customSQLDeleteAll ;
106
103
private boolean customDeleteAllCallable ;
107
- private ExecuteUpdateResultCheckStyle deleteAllCheckStyle ;
108
104
109
105
private Column softDeleteColumn ;
110
106
private SoftDeleteType softDeleteStrategy ;
@@ -171,16 +167,12 @@ protected Collection(Collection original) {
171
167
this .synchronizedTables .addAll ( original .synchronizedTables );
172
168
this .customSQLInsert = original .customSQLInsert ;
173
169
this .customInsertCallable = original .customInsertCallable ;
174
- this .insertCheckStyle = original .insertCheckStyle ;
175
170
this .customSQLUpdate = original .customSQLUpdate ;
176
171
this .customUpdateCallable = original .customUpdateCallable ;
177
- this .updateCheckStyle = original .updateCheckStyle ;
178
172
this .customSQLDelete = original .customSQLDelete ;
179
173
this .customDeleteCallable = original .customDeleteCallable ;
180
- this .deleteCheckStyle = original .deleteCheckStyle ;
181
174
this .customSQLDeleteAll = original .customSQLDeleteAll ;
182
175
this .customDeleteAllCallable = original .customDeleteAllCallable ;
183
- this .deleteAllCheckStyle = original .deleteAllCheckStyle ;
184
176
this .insertExpectation = original .insertExpectation ;
185
177
this .updateExpectation = original .updateExpectation ;
186
178
this .deleteExpectation = original .deleteExpectation ;
@@ -602,7 +594,6 @@ public void setQueryCacheLayout(CacheLayout queryCacheLayout) {
602
594
public void setCustomSQLInsert (String customSQLInsert , boolean callable , ExecuteUpdateResultCheckStyle checkStyle ) {
603
595
this .customSQLInsert = customSQLInsert ;
604
596
this .customInsertCallable = callable ;
605
- this .insertCheckStyle = checkStyle ;
606
597
this .insertExpectation = expectationConstructor ( checkStyle );
607
598
}
608
599
@@ -617,7 +608,6 @@ public boolean isCustomInsertCallable() {
617
608
public void setCustomSQLUpdate (String customSQLUpdate , boolean callable , ExecuteUpdateResultCheckStyle checkStyle ) {
618
609
this .customSQLUpdate = customSQLUpdate ;
619
610
this .customUpdateCallable = callable ;
620
- this .updateCheckStyle = checkStyle ;
621
611
this .updateExpectation = expectationConstructor ( checkStyle );
622
612
}
623
613
@@ -632,7 +622,6 @@ public boolean isCustomUpdateCallable() {
632
622
public void setCustomSQLDelete (String customSQLDelete , boolean callable , ExecuteUpdateResultCheckStyle checkStyle ) {
633
623
this .customSQLDelete = customSQLDelete ;
634
624
this .customDeleteCallable = callable ;
635
- this .deleteCheckStyle = checkStyle ;
636
625
this .deleteExpectation = expectationConstructor ( checkStyle );
637
626
}
638
627
@@ -650,7 +639,6 @@ public void setCustomSQLDeleteAll(
650
639
ExecuteUpdateResultCheckStyle checkStyle ) {
651
640
this .customSQLDeleteAll = customSQLDeleteAll ;
652
641
this .customDeleteAllCallable = callable ;
653
- this .deleteAllCheckStyle = checkStyle ;
654
642
this .deleteAllExpectation = expectationConstructor ( checkStyle );
655
643
}
656
644
@@ -662,10 +650,6 @@ public boolean isCustomDeleteAllCallable() {
662
650
return customDeleteAllCallable ;
663
651
}
664
652
665
- public ExecuteUpdateResultCheckStyle getCustomSQLDeleteAllCheckStyle () {
666
- return deleteAllCheckStyle ;
667
- }
668
-
669
653
@ Override
670
654
public void addFilter (
671
655
String name ,
0 commit comments