Skip to content

Commit 1d2dc66

Browse files
committed
CPD Fixes
1 parent 8b64511 commit 1d2dc66

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/org/mybatis/dynamic/sql/insert/BatchInsertDSL.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ public BatchInsertModel<T> build() {
5858
}
5959

6060
@SafeVarargs
61-
public static <T> IntoGatherer<T> insert(T... records) {
61+
public static <T> BatchInsertDSL.IntoGatherer<T> insert(T... records) {
6262
return insert(Arrays.asList(records));
6363
}
6464

65-
public static <T> IntoGatherer<T> insert(Collection<T> records) {
65+
public static <T> BatchInsertDSL.IntoGatherer<T> insert(Collection<T> records) {
6666
return new IntoGatherer<>(records);
6767
}
6868

src/main/java/org/mybatis/dynamic/sql/insert/MultiRowInsertDSL.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ public MultiRowInsertModel<T> build() {
5757
}
5858

5959
@SafeVarargs
60-
public static <T> IntoGatherer<T> insert(T... records) {
60+
public static <T> MultiRowInsertDSL.IntoGatherer<T> insert(T... records) {
6161
return insert(Arrays.asList(records));
6262
}
6363

64-
public static <T> IntoGatherer<T> insert(Collection<T> records) {
64+
public static <T> MultiRowInsertDSL.IntoGatherer<T> insert(Collection<T> records) {
6565
return new IntoGatherer<>(records);
6666
}
6767

0 commit comments

Comments
 (0)