Skip to content

Commit 1f47672

Browse files
committed
Merge pull request #11068 from izeye/super
* pr/11068: Remove explicit constructor super() calls
2 parents a6cefc5 + 1783a07 commit 1f47672

File tree

29 files changed

+0
-32
lines changed

29 files changed

+0
-32
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/Trace.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public final class Trace {
3434
private final Map<String, Object> info;
3535

3636
public Trace(Date timestamp, Map<String, Object> info) {
37-
super();
3837
Assert.notNull(timestamp, "Timestamp must not be null");
3938
Assert.notNull(info, "Info must not be null");
4039
this.timestamp = timestamp;

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ public MustacheResourceTemplateLoader() {
5454
}
5555

5656
public MustacheResourceTemplateLoader(String prefix, String suffix) {
57-
super();
5857
this.prefix = prefix;
5958
this.suffix = suffix;
6059
}

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/elasticsearch/city/City.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ protected City() {
4141
}
4242

4343
public City(String name, String country) {
44-
super();
4544
this.name = name;
4645
this.country = country;
4746
}

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/jpa/city/City.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ protected City() {
4848
}
4949

5050
public City(String name, String country) {
51-
super();
5251
this.name = name;
5352
this.country = country;
5453
}

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/city/City.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ protected City() {
4949
}
5050

5151
public City(String name, String country) {
52-
super();
5352
this.name = name;
5453
this.country = country;
5554
}

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/country/Country.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ protected Country() {
4040
}
4141

4242
public Country(String name) {
43-
super();
4443
this.name = name;
4544
}
4645

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/city/City.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ protected City() {
4141
}
4242

4343
public City(String name, String country) {
44-
super();
4544
this.name = name;
4645
this.country = country;
4746
}

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/test/City.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ protected City() {
4848
}
4949

5050
public City(String name, String state, String country, String map) {
51-
super();
5251
this.name = name;
5352
this.state = state;
5453
this.country = country;

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/social/AbstractSocialAutoConfigurationTests.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ public void close() {
4444
}
4545
}
4646

47-
public AbstractSocialAutoConfigurationTests() {
48-
super();
49-
}
50-
5147
protected void assertConnectionFrameworkBeans() {
5248
assertThat(this.context.getBean(UsersConnectionRepository.class)).isNotNull();
5349
assertThat(this.context.getBean(ConnectionRepository.class)).isNotNull();

spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ protected ExampleEntity() {
4040
}
4141

4242
public ExampleEntity(String name, String reference) {
43-
super();
4443
this.name = name;
4544
this.reference = reference;
4645
}

0 commit comments

Comments
 (0)