From 173bd9b12773ced2b0f6ab383dd23604a716084c Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Sat, 18 Nov 2017 02:45:09 +0900 Subject: [PATCH] Remove explicit super() calls --- .../java/org/springframework/boot/actuate/trace/Trace.java | 1 - .../mustache/MustacheResourceTemplateLoader.java | 1 - .../boot/autoconfigure/data/elasticsearch/city/City.java | 1 - .../boot/autoconfigure/data/jpa/city/City.java | 1 - .../boot/autoconfigure/data/mongo/city/City.java | 1 - .../boot/autoconfigure/data/mongo/country/Country.java | 1 - .../boot/autoconfigure/data/redis/city/City.java | 1 - .../springframework/boot/autoconfigure/orm/jpa/test/City.java | 1 - .../social/AbstractSocialAutoConfigurationTests.java | 4 ---- .../boot/test/autoconfigure/orm/jpa/ExampleEntity.java | 1 - .../java/org/springframework/boot/ant/ShareAntlibLoader.java | 1 - .../boot/configurationprocessor/metadata/ItemMetadata.java | 1 - .../java/org/springframework/boot/loader/WarLauncher.java | 1 - .../boot/loader/jar/CentralDirectoryFileHeader.java | 1 - .../properties/bind/handler/IgnoreErrorsBindHandler.java | 1 - .../properties/bind/validation/ValidationBindHandler.java | 1 - .../boot/jta/bitronix/PoolingDataSourceBean.java | 1 - .../ConcurrentReferenceCachingMetadataReaderFactory.java | 1 - .../springframework/boot/web/client/RestTemplateBuilder.java | 1 - .../web/embedded/jetty/JettyReactiveWebServerFactory.java | 1 - .../boot/web/embedded/jetty/JettyServletWebServerFactory.java | 1 - .../web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java | 1 - .../web/embedded/tomcat/TomcatReactiveWebServerFactory.java | 1 - .../web/embedded/tomcat/TomcatServletWebServerFactory.java | 1 - .../embedded/undertow/UndertowServletWebServerFactory.java | 1 - .../context/GenericReactiveWebApplicationContext.java | 1 - .../src/main/java/sample/data/jpa/domain/City.java | 1 - .../src/main/java/sample/data/rest/domain/City.java | 1 - .../src/main/java/sample/data/solr/Product.java | 1 - 29 files changed, 32 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/Trace.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/Trace.java index 4436fe8b03e9..ba49e689a48b 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/Trace.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/Trace.java @@ -34,7 +34,6 @@ public final class Trace { private final Map info; public Trace(Date timestamp, Map info) { - super(); Assert.notNull(timestamp, "Timestamp must not be null"); Assert.notNull(info, "Info must not be null"); this.timestamp = timestamp; diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java index d2144b304275..3689c9f5beff 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java @@ -54,7 +54,6 @@ public MustacheResourceTemplateLoader() { } public MustacheResourceTemplateLoader(String prefix, String suffix) { - super(); this.prefix = prefix; this.suffix = suffix; } diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/elasticsearch/city/City.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/elasticsearch/city/City.java index f3adfc024f31..aecfbc7d9eb4 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/elasticsearch/city/City.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/elasticsearch/city/City.java @@ -41,7 +41,6 @@ protected City() { } public City(String name, String country) { - super(); this.name = name; this.country = country; } diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/jpa/city/City.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/jpa/city/City.java index 6d6dd1109c94..1d5590246ffb 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/jpa/city/City.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/jpa/city/City.java @@ -48,7 +48,6 @@ protected City() { } public City(String name, String country) { - super(); this.name = name; this.country = country; } diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/city/City.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/city/City.java index 6e11995d01e6..1d75fa33dfaf 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/city/City.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/city/City.java @@ -49,7 +49,6 @@ protected City() { } public City(String name, String country) { - super(); this.name = name; this.country = country; } diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/country/Country.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/country/Country.java index 11f2378f16ce..509eae9d6684 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/country/Country.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/country/Country.java @@ -40,7 +40,6 @@ protected Country() { } public Country(String name) { - super(); this.name = name; } diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/city/City.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/city/City.java index 0f2d0de61b7b..c6fde780bc9d 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/city/City.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/city/City.java @@ -41,7 +41,6 @@ protected City() { } public City(String name, String country) { - super(); this.name = name; this.country = country; } diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/test/City.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/test/City.java index 15ab1b9070e6..0afa47ffa108 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/test/City.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/test/City.java @@ -48,7 +48,6 @@ protected City() { } public City(String name, String state, String country, String map) { - super(); this.name = name; this.state = state; this.country = country; diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/social/AbstractSocialAutoConfigurationTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/social/AbstractSocialAutoConfigurationTests.java index db1aee5aff44..c4d56df1ae56 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/social/AbstractSocialAutoConfigurationTests.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/social/AbstractSocialAutoConfigurationTests.java @@ -44,10 +44,6 @@ public void close() { } } - public AbstractSocialAutoConfigurationTests() { - super(); - } - protected void assertConnectionFrameworkBeans() { assertThat(this.context.getBean(UsersConnectionRepository.class)).isNotNull(); assertThat(this.context.getBean(ConnectionRepository.class)).isNotNull(); diff --git a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java index 7f348b7b1d6d..191fa3a67594 100644 --- a/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java +++ b/spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java @@ -40,7 +40,6 @@ protected ExampleEntity() { } public ExampleEntity(String name, String reference) { - super(); this.name = name; this.reference = reference; } diff --git a/spring-boot-project/spring-boot-tools/spring-boot-antlib/src/main/java/org/springframework/boot/ant/ShareAntlibLoader.java b/spring-boot-project/spring-boot-tools/spring-boot-antlib/src/main/java/org/springframework/boot/ant/ShareAntlibLoader.java index 8c07cdfc84b0..a029dd116acf 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-antlib/src/main/java/org/springframework/boot/ant/ShareAntlibLoader.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-antlib/src/main/java/org/springframework/boot/ant/ShareAntlibLoader.java @@ -33,7 +33,6 @@ public class ShareAntlibLoader extends Task { private String refid; public ShareAntlibLoader(Project project) { - super(); setProject(project); } diff --git a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java index 2d0f172df2ae..6cd1483829ba 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java @@ -45,7 +45,6 @@ public final class ItemMetadata implements Comparable { ItemMetadata(ItemType itemType, String prefix, String name, String type, String sourceType, String sourceMethod, String description, Object defaultValue, ItemDeprecation deprecation) { - super(); this.itemType = itemType; this.name = buildName(prefix, name); this.type = type; diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java index 1577a22161fa..8a9a1654b8a8 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java @@ -37,7 +37,6 @@ public class WarLauncher extends ExecutableArchiveLauncher { private static final String WEB_INF_LIB_PROVIDED = WEB_INF + "lib-provided/"; public WarLauncher() { - super(); } protected WarLauncher(Archive archive) { diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java index e821ba702fc9..5177f41d586c 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java @@ -55,7 +55,6 @@ final class CentralDirectoryFileHeader implements FileHeader { CentralDirectoryFileHeader(byte[] header, int headerOffset, AsciiBytes name, byte[] extra, AsciiBytes comment, long localHeaderOffset) { - super(); this.header = header; this.headerOffset = headerOffset; this.name = name; diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/handler/IgnoreErrorsBindHandler.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/handler/IgnoreErrorsBindHandler.java index c0935c16247a..da6dd2113e83 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/handler/IgnoreErrorsBindHandler.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/handler/IgnoreErrorsBindHandler.java @@ -32,7 +32,6 @@ public class IgnoreErrorsBindHandler extends AbstractBindHandler { public IgnoreErrorsBindHandler() { - super(); } public IgnoreErrorsBindHandler(BindHandler parent) { diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/validation/ValidationBindHandler.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/validation/ValidationBindHandler.java index 239dc2f6ba1b..bd4b0be943ba 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/validation/ValidationBindHandler.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/validation/ValidationBindHandler.java @@ -49,7 +49,6 @@ public class ValidationBindHandler extends AbstractBindHandler { private final Set boundProperties = new LinkedHashSet<>(); public ValidationBindHandler(Validator... validators) { - super(); this.validators = validators; } diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBean.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBean.java index b9054c17f2cc..21b192c99ef4 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBean.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBean.java @@ -56,7 +56,6 @@ public class PoolingDataSourceBean extends PoolingDataSource private String beanName; public PoolingDataSourceBean() { - super(); setMaxPoolSize(10); setAllowLocalTransactions(true); setEnableJdbc4ConnectionTest(true); diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/type/classreading/ConcurrentReferenceCachingMetadataReaderFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/type/classreading/ConcurrentReferenceCachingMetadataReaderFactory.java index ae9eea6e42b9..1a8ab0950cef 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/type/classreading/ConcurrentReferenceCachingMetadataReaderFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/type/classreading/ConcurrentReferenceCachingMetadataReaderFactory.java @@ -46,7 +46,6 @@ public class ConcurrentReferenceCachingMetadataReaderFactory * the default class loader. */ public ConcurrentReferenceCachingMetadataReaderFactory() { - super(); } /** diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java index 49110d6ad816..ff131a676782 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java @@ -123,7 +123,6 @@ private RestTemplateBuilder(boolean detectRequestFactory, String rootUri, Set restTemplateCustomizers, Set requestFactoryCustomizers, Set interceptors) { - super(); this.detectRequestFactory = detectRequestFactory; this.rootUri = rootUri; this.messageConverters = messageConverters; diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyReactiveWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyReactiveWebServerFactory.java index dcc0d50db1f7..7214c5f3394c 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyReactiveWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyReactiveWebServerFactory.java @@ -69,7 +69,6 @@ public class JettyReactiveWebServerFactory extends AbstractReactiveWebServerFact * Create a new {@link JettyServletWebServerFactory} instance. */ public JettyReactiveWebServerFactory() { - super(); } /** diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyServletWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyServletWebServerFactory.java index 5164e24fd6e9..0f7d63543ce6 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyServletWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyServletWebServerFactory.java @@ -122,7 +122,6 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor * Create a new {@link JettyServletWebServerFactory} instance. */ public JettyServletWebServerFactory() { - super(); } /** diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java index b938ab0a7262..71a2a51d6507 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java @@ -44,7 +44,6 @@ public class TomcatEmbeddedWebappClassLoader extends ParallelWebappClassLoader { } public TomcatEmbeddedWebappClassLoader() { - super(); } public TomcatEmbeddedWebappClassLoader(ClassLoader parent) { diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java index 028a50c0cfcd..7ede659ead32 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java @@ -68,7 +68,6 @@ public class TomcatReactiveWebServerFactory extends AbstractReactiveWebServerFac * Create a new {@link TomcatServletWebServerFactory} instance. */ public TomcatReactiveWebServerFactory() { - super(); } /** diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory.java index 60b90be29628..c9781fd6d096 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory.java @@ -136,7 +136,6 @@ public class TomcatServletWebServerFactory extends AbstractServletWebServerFacto * Create a new {@link TomcatServletWebServerFactory} instance. */ public TomcatServletWebServerFactory() { - super(); } /** diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java index f19ea53d769b..b9e2043804c5 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java @@ -123,7 +123,6 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac * Create a new {@link UndertowServletWebServerFactory} instance. */ public UndertowServletWebServerFactory() { - super(); getJsp().setRegistered(false); } diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/GenericReactiveWebApplicationContext.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/GenericReactiveWebApplicationContext.java index 7371618e42b9..4a8ece8e6bff 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/GenericReactiveWebApplicationContext.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/GenericReactiveWebApplicationContext.java @@ -39,7 +39,6 @@ public class GenericReactiveWebApplicationContext extends GenericApplicationCont * @see #refresh */ public GenericReactiveWebApplicationContext() { - super(); } /** diff --git a/spring-boot-samples/spring-boot-sample-data-jpa/src/main/java/sample/data/jpa/domain/City.java b/spring-boot-samples/spring-boot-sample-data-jpa/src/main/java/sample/data/jpa/domain/City.java index ea41afba99ab..1dd28aee36ee 100644 --- a/spring-boot-samples/spring-boot-sample-data-jpa/src/main/java/sample/data/jpa/domain/City.java +++ b/spring-boot-samples/spring-boot-sample-data-jpa/src/main/java/sample/data/jpa/domain/City.java @@ -50,7 +50,6 @@ protected City() { } public City(String name, String country) { - super(); this.name = name; this.country = country; } diff --git a/spring-boot-samples/spring-boot-sample-data-rest/src/main/java/sample/data/rest/domain/City.java b/spring-boot-samples/spring-boot-sample-data-rest/src/main/java/sample/data/rest/domain/City.java index 2f4f6a2e192a..a60ae7b6ccc5 100644 --- a/spring-boot-samples/spring-boot-sample-data-rest/src/main/java/sample/data/rest/domain/City.java +++ b/spring-boot-samples/spring-boot-sample-data-rest/src/main/java/sample/data/rest/domain/City.java @@ -50,7 +50,6 @@ protected City() { } public City(String name, String country) { - super(); this.name = name; this.country = country; } diff --git a/spring-boot-samples/spring-boot-sample-data-solr/src/main/java/sample/data/solr/Product.java b/spring-boot-samples/spring-boot-sample-data-solr/src/main/java/sample/data/solr/Product.java index 2ff620afadbe..bdd5aa86192b 100644 --- a/spring-boot-samples/spring-boot-sample-data-solr/src/main/java/sample/data/solr/Product.java +++ b/spring-boot-samples/spring-boot-sample-data-solr/src/main/java/sample/data/solr/Product.java @@ -47,7 +47,6 @@ public Product() { } public Product(String id, String name) { - super(); this.id = id; this.name = name; }