Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public final class Trace {
private final Map<String, Object> info;

public Trace(Date timestamp, Map<String, Object> info) {
super();
Assert.notNull(timestamp, "Timestamp must not be null");
Assert.notNull(info, "Info must not be null");
this.timestamp = timestamp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public MustacheResourceTemplateLoader() {
}

public MustacheResourceTemplateLoader(String prefix, String suffix) {
super();
this.prefix = prefix;
this.suffix = suffix;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ protected City() {
}

public City(String name, String country) {
super();
this.name = name;
this.country = country;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ protected City() {
}

public City(String name, String country) {
super();
this.name = name;
this.country = country;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ protected City() {
}

public City(String name, String country) {
super();
this.name = name;
this.country = country;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ protected Country() {
}

public Country(String name) {
super();
this.name = name;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ protected City() {
}

public City(String name, String country) {
super();
this.name = name;
this.country = country;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ protected ExampleEntity() {
}

public ExampleEntity(String name, String reference) {
super();
this.name = name;
this.reference = reference;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class ShareAntlibLoader extends Task {
private String refid;

public ShareAntlibLoader(Project project) {
super();
setProject(project);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public final class ItemMetadata implements Comparable<ItemMetadata> {
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
public class IgnoreErrorsBindHandler extends AbstractBindHandler {

public IgnoreErrorsBindHandler() {
super();
}

public IgnoreErrorsBindHandler(BindHandler parent) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public class ValidationBindHandler extends AbstractBindHandler {
private final Set<ConfigurationProperty> boundProperties = new LinkedHashSet<>();

public ValidationBindHandler(Validator... validators) {
super();
this.validators = validators;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public class PoolingDataSourceBean extends PoolingDataSource
private String beanName;

public PoolingDataSourceBean() {
super();
setMaxPoolSize(10);
setAllowLocalTransactions(true);
setEnableJdbc4ConnectionTest(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public class ConcurrentReferenceCachingMetadataReaderFactory
* the default class loader.
*/
public ConcurrentReferenceCachingMetadataReaderFactory() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ private RestTemplateBuilder(boolean detectRequestFactory, String rootUri,
Set<RestTemplateCustomizer> restTemplateCustomizers,
Set<RequestFactoryCustomizer> requestFactoryCustomizers,
Set<ClientHttpRequestInterceptor> interceptors) {
super();
this.detectRequestFactory = detectRequestFactory;
this.rootUri = rootUri;
this.messageConverters = messageConverters;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public class JettyReactiveWebServerFactory extends AbstractReactiveWebServerFact
* Create a new {@link JettyServletWebServerFactory} instance.
*/
public JettyReactiveWebServerFactory() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor
* Create a new {@link JettyServletWebServerFactory} instance.
*/
public JettyServletWebServerFactory() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public class TomcatEmbeddedWebappClassLoader extends ParallelWebappClassLoader {
}

public TomcatEmbeddedWebappClassLoader() {
super();
}

public TomcatEmbeddedWebappClassLoader(ClassLoader parent) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public class TomcatReactiveWebServerFactory extends AbstractReactiveWebServerFac
* Create a new {@link TomcatServletWebServerFactory} instance.
*/
public TomcatReactiveWebServerFactory() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ public class TomcatServletWebServerFactory extends AbstractServletWebServerFacto
* Create a new {@link TomcatServletWebServerFactory} instance.
*/
public TomcatServletWebServerFactory() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac
* Create a new {@link UndertowServletWebServerFactory} instance.
*/
public UndertowServletWebServerFactory() {
super();
getJsp().setRegistered(false);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public class GenericReactiveWebApplicationContext extends GenericApplicationCont
* @see #refresh
*/
public GenericReactiveWebApplicationContext() {
super();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ protected City() {
}

public City(String name, String country) {
super();
this.name = name;
this.country = country;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ protected City() {
}

public City(String name, String country) {
super();
this.name = name;
this.country = country;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public Product() {
}

public Product(String id, String name) {
super();
this.id = id;
this.name = name;
}
Expand Down