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) {
22
22
}
23
23
24
24
@ Override
25
- public <R > T visit (ValueWhenPresentMapping <R > mapping ) {
25
+ public final <R > T visit (ValueWhenPresentMapping <R > mapping ) {
26
26
throw new UnsupportedOperationException ();
27
27
}
28
28
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .mybatis .dynamic .sql .util ;
17
17
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 > {
39
19
@ Override
40
20
public final T visit (PropertyWhenPresentMapping mapping ) {
41
21
throw new UnsupportedOperationException ();
You can’t perform that action at this time.
0 commit comments