Remove explicit constructor super() calls
Closes gh-11068
This commit is contained in:
@@ -54,7 +54,6 @@ public class MustacheResourceTemplateLoader
|
||||
}
|
||||
|
||||
public MustacheResourceTemplateLoader(String prefix, String suffix) {
|
||||
super();
|
||||
this.prefix = prefix;
|
||||
this.suffix = suffix;
|
||||
}
|
||||
|
||||
@@ -41,7 +41,6 @@ public class City implements Serializable {
|
||||
}
|
||||
|
||||
public City(String name, String country) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
@@ -48,7 +48,6 @@ public class City implements Serializable {
|
||||
}
|
||||
|
||||
public City(String name, String country) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
@@ -49,7 +49,6 @@ public class City implements Serializable {
|
||||
}
|
||||
|
||||
public City(String name, String country) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,6 @@ public class Country implements Serializable {
|
||||
}
|
||||
|
||||
public Country(String name) {
|
||||
super();
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
@@ -41,7 +41,6 @@ public class City implements Serializable {
|
||||
}
|
||||
|
||||
public City(String name, String country) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
@@ -48,7 +48,6 @@ public class City implements Serializable {
|
||||
}
|
||||
|
||||
public City(String name, String state, String country, String map) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.state = state;
|
||||
this.country = country;
|
||||
|
||||
@@ -44,10 +44,6 @@ public abstract class AbstractSocialAutoConfigurationTests {
|
||||
}
|
||||
}
|
||||
|
||||
public AbstractSocialAutoConfigurationTests() {
|
||||
super();
|
||||
}
|
||||
|
||||
protected void assertConnectionFrameworkBeans() {
|
||||
assertThat(this.context.getBean(UsersConnectionRepository.class)).isNotNull();
|
||||
assertThat(this.context.getBean(ConnectionRepository.class)).isNotNull();
|
||||
|
||||
Reference in New Issue
Block a user