We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf165d commit e1ea69dCopy full SHA for e1ea69d
src/main/java/org/mybatis/dynamic/sql/util/spring/BatchInsertUtility.java
@@ -39,15 +39,5 @@ public static <T> SqlParameterSource[] createBatch(List<T> rows) {
39
return SqlParameterSourceUtils.createBatch(tt);
40
}
41
42
- public static class RowHolder<T> {
43
- private final T row;
44
-
45
- public RowHolder(T row) {
46
- this.row = row;
47
- }
48
49
- public T getRow() {
50
- return row;
51
52
+ public record RowHolder<T> (T row) {}
53
0 commit comments