File tree Expand file tree Collapse file tree 2 files changed +2
-22
lines changed
src/main/java/org/mybatis/dynamic/sql/util Expand file tree Collapse file tree 2 files changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public final <R> T visit(ValueMapping<R> mapping) {
2222 }
2323
2424 @ Override
25- public <R > T visit (ValueWhenPresentMapping <R > mapping ) {
25+ public final <R > T visit (ValueWhenPresentMapping <R > mapping ) {
2626 throw new UnsupportedOperationException ();
2727 }
2828
Original file line number Diff line number Diff line change 1515 */
1616package org .mybatis .dynamic .sql .util ;
1717
18- public abstract class MultiRowInsertMappingVisitor <T > implements ColumnMappingVisitor <T > {
19- @ Override
20- public final <R > T visit (ValueMapping <R > mapping ) {
21- throw new UnsupportedOperationException ();
22- }
23-
24- @ Override
25- public final T visit (SelectMapping mapping ) {
26- throw new UnsupportedOperationException ();
27- }
28-
29- @ Override
30- public final T visit (ColumnToColumnMapping columnMapping ) {
31- throw new UnsupportedOperationException ();
32- }
33-
34- @ Override
35- public final <R > T visit (ValueWhenPresentMapping <R > mapping ) {
36- throw new UnsupportedOperationException ();
37- }
38-
18+ public abstract class MultiRowInsertMappingVisitor <T > extends InsertMappingVisitor <T > {
3919 @ Override
4020 public final T visit (PropertyWhenPresentMapping mapping ) {
4121 throw new UnsupportedOperationException ();
You can’t perform that action at this time.
0 commit comments