Skip to content

Commit 7b8f2ea

Browse files
committed
[ci] Remove super as no super to call
1 parent c56b00e commit 7b8f2ea

File tree

22 files changed

+0
-35
lines changed

22 files changed

+0
-35
lines changed

src/test/java/org/apache/ibatis/submitted/arg_name_based_constructor_automapping/Task.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public class Task {
2323
private User assignee;
2424

2525
public Task(@Param("id") Integer id, @Param("name") String name) {
26-
super();
2726
this.id = id;
2827
this.name = name;
2928
}

src/test/java/org/apache/ibatis/submitted/arg_name_based_constructor_automapping/User.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public class User {
2222
private Long team;
2323

2424
public User(Integer id, String name) {
25-
super();
2625
this.id = id;
2726
this.name = name + "!";
2827
}

src/test/java/org/apache/ibatis/submitted/arg_name_based_constructor_automapping/User2.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public class User2 {
2323
private final String name;
2424

2525
public User2(Integer userId, @Param("userName") String name) {
26-
super();
2726
this.userId = userId;
2827
this.name = name;
2928
}

src/test/java/org/apache/ibatis/submitted/blobtest/BlobRecord.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@ public class BlobRecord {
2020
private byte[] blob;
2121

2222
public BlobRecord(int id, byte[] blob) {
23-
super();
2423
this.id = id;
2524
this.blob = blob;
2625
}
2726

2827
public BlobRecord(int id, Byte[] blob) {
29-
super();
3028
this.id = id;
3129
final byte[] newBytes = new byte[blob.length];
3230
for (int i = 0; i < blob.length; i++) {

src/test/java/org/apache/ibatis/submitted/column_prefix/Address.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public class Address {
3333
private Zip zip;
3434

3535
public Address(Integer id, String state) {
36-
super();
3736
this.id = id;
3837
this.state = state;
3938
}

src/test/java/org/apache/ibatis/submitted/constructor_automapping/Author.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public class Author {
2121
private String name;
2222

2323
private Author(Integer id) {
24-
super();
2524
this.id = id;
2625
}
2726

src/test/java/org/apache/ibatis/submitted/constructor_columnprefix/Article.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public class Article {
2626
private final Author coauthor;
2727

2828
public Article(EntityKey id, String name, Author author, Author coauthor) {
29-
super();
3029
this.id = id;
3130
this.name = name;
3231
this.author = author;

src/test/java/org/apache/ibatis/submitted/empty_row/ImmutableParent.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public class ImmutableParent {
2020
private final String col2;
2121

2222
public ImmutableParent(String col1, String col2) {
23-
super();
2423
this.col1 = col1;
2524
this.col2 = col2;
2625
}

src/test/java/org/apache/ibatis/submitted/extendresultmap/TestModel.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public TestModel() {
2424
}
2525

2626
public TestModel(String a, String b) {
27-
super();
2827
this.a = a;
2928
this.b = b;
3029
}

src/test/java/org/apache/ibatis/submitted/mapper_type_parameter/Country.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,13 @@ public class Country {
2121
private String name;
2222

2323
public Country() {
24-
super();
2524
}
2625

2726
public Country(Long id) {
28-
super();
2927
this.id = id;
3028
}
3129

3230
public Country(Long id, String name) {
33-
super();
3431
this.id = id;
3532
this.name = name;
3633
}

0 commit comments

Comments
 (0)