Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
1783a072
Commit
1783a072
authored
Nov 17, 2017
by
Johnny Lim
Committed by
Phillip Webb
Nov 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove explicit constructor super() calls
Closes gh-11068
parent
a6cefc5b
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
0 additions
and
32 deletions
+0
-32
Trace.java
...in/java/org/springframework/boot/actuate/trace/Trace.java
+0
-1
MustacheResourceTemplateLoader.java
...utoconfigure/mustache/MustacheResourceTemplateLoader.java
+0
-1
City.java
...work/boot/autoconfigure/data/elasticsearch/city/City.java
+0
-1
City.java
...pringframework/boot/autoconfigure/data/jpa/city/City.java
+0
-1
City.java
...ingframework/boot/autoconfigure/data/mongo/city/City.java
+0
-1
Country.java
...mework/boot/autoconfigure/data/mongo/country/Country.java
+0
-1
City.java
...ingframework/boot/autoconfigure/data/redis/city/City.java
+0
-1
City.java
...springframework/boot/autoconfigure/orm/jpa/test/City.java
+0
-1
AbstractSocialAutoConfigurationTests.java
...onfigure/social/AbstractSocialAutoConfigurationTests.java
+0
-4
ExampleEntity.java
...mework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java
+0
-1
ShareAntlibLoader.java
.../java/org/springframework/boot/ant/ShareAntlibLoader.java
+0
-1
ItemMetadata.java
...rk/boot/configurationprocessor/metadata/ItemMetadata.java
+0
-1
WarLauncher.java
...ain/java/org/springframework/boot/loader/WarLauncher.java
+0
-1
CentralDirectoryFileHeader.java
...framework/boot/loader/jar/CentralDirectoryFileHeader.java
+0
-1
IgnoreErrorsBindHandler.java
...text/properties/bind/handler/IgnoreErrorsBindHandler.java
+0
-1
ValidationBindHandler.java
...ext/properties/bind/validation/ValidationBindHandler.java
+0
-1
PoolingDataSourceBean.java
...ingframework/boot/jta/bitronix/PoolingDataSourceBean.java
+0
-1
ConcurrentReferenceCachingMetadataReaderFactory.java
...ding/ConcurrentReferenceCachingMetadataReaderFactory.java
+0
-1
RestTemplateBuilder.java
.../springframework/boot/web/client/RestTemplateBuilder.java
+0
-1
JettyReactiveWebServerFactory.java
...oot/web/embedded/jetty/JettyReactiveWebServerFactory.java
+0
-1
JettyServletWebServerFactory.java
...boot/web/embedded/jetty/JettyServletWebServerFactory.java
+0
-1
TomcatEmbeddedWebappClassLoader.java
.../web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java
+0
-1
TomcatReactiveWebServerFactory.java
...t/web/embedded/tomcat/TomcatReactiveWebServerFactory.java
+0
-1
TomcatServletWebServerFactory.java
...ot/web/embedded/tomcat/TomcatServletWebServerFactory.java
+0
-1
UndertowServletWebServerFactory.java
...eb/embedded/undertow/UndertowServletWebServerFactory.java
+0
-1
GenericReactiveWebApplicationContext.java
...eactive/context/GenericReactiveWebApplicationContext.java
+0
-1
City.java
...e-data-jpa/src/main/java/sample/data/jpa/domain/City.java
+0
-1
City.java
...data-rest/src/main/java/sample/data/rest/domain/City.java
+0
-1
Product.java
...ple-data-solr/src/main/java/sample/data/solr/Product.java
+0
-1
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/Trace.java
View file @
1783a072
...
...
@@ -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
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheResourceTemplateLoader.java
View file @
1783a072
...
...
@@ -54,7 +54,6 @@ public class MustacheResourceTemplateLoader
}
public
MustacheResourceTemplateLoader
(
String
prefix
,
String
suffix
)
{
super
();
this
.
prefix
=
prefix
;
this
.
suffix
=
suffix
;
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/elasticsearch/city/City.java
View file @
1783a072
...
...
@@ -41,7 +41,6 @@ public class City implements Serializable {
}
public
City
(
String
name
,
String
country
)
{
super
();
this
.
name
=
name
;
this
.
country
=
country
;
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/jpa/city/City.java
View file @
1783a072
...
...
@@ -48,7 +48,6 @@ public class City implements Serializable {
}
public
City
(
String
name
,
String
country
)
{
super
();
this
.
name
=
name
;
this
.
country
=
country
;
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/city/City.java
View file @
1783a072
...
...
@@ -49,7 +49,6 @@ public class City implements Serializable {
}
public
City
(
String
name
,
String
country
)
{
super
();
this
.
name
=
name
;
this
.
country
=
country
;
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/country/Country.java
View file @
1783a072
...
...
@@ -40,7 +40,6 @@ public class Country implements Serializable {
}
public
Country
(
String
name
)
{
super
();
this
.
name
=
name
;
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/city/City.java
View file @
1783a072
...
...
@@ -41,7 +41,6 @@ public class City implements Serializable {
}
public
City
(
String
name
,
String
country
)
{
super
();
this
.
name
=
name
;
this
.
country
=
country
;
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/orm/jpa/test/City.java
View file @
1783a072
...
...
@@ -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
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/social/AbstractSocialAutoConfigurationTests.java
View file @
1783a072
...
...
@@ -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
();
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/ExampleEntity.java
View file @
1783a072
...
...
@@ -40,7 +40,6 @@ public class ExampleEntity {
}
public
ExampleEntity
(
String
name
,
String
reference
)
{
super
();
this
.
name
=
name
;
this
.
reference
=
reference
;
}
...
...
spring-boot-project/spring-boot-tools/spring-boot-antlib/src/main/java/org/springframework/boot/ant/ShareAntlibLoader.java
View file @
1783a072
...
...
@@ -33,7 +33,6 @@ public class ShareAntlibLoader extends Task {
private
String
refid
;
public
ShareAntlibLoader
(
Project
project
)
{
super
();
setProject
(
project
);
}
...
...
spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java
View file @
1783a072
...
...
@@ -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
;
...
...
spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java
View file @
1783a072
...
...
@@ -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
)
{
...
...
spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java
View file @
1783a072
...
...
@@ -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
;
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/handler/IgnoreErrorsBindHandler.java
View file @
1783a072
...
...
@@ -32,7 +32,6 @@ import org.springframework.boot.context.properties.source.ConfigurationPropertyN
public
class
IgnoreErrorsBindHandler
extends
AbstractBindHandler
{
public
IgnoreErrorsBindHandler
()
{
super
();
}
public
IgnoreErrorsBindHandler
(
BindHandler
parent
)
{
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/validation/ValidationBindHandler.java
View file @
1783a072
...
...
@@ -49,7 +49,6 @@ public class ValidationBindHandler extends AbstractBindHandler {
private
final
Set
<
ConfigurationProperty
>
boundProperties
=
new
LinkedHashSet
<>();
public
ValidationBindHandler
(
Validator
...
validators
)
{
super
();
this
.
validators
=
validators
;
}
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBean.java
View file @
1783a072
...
...
@@ -56,7 +56,6 @@ public class PoolingDataSourceBean extends PoolingDataSource
private
String
beanName
;
public
PoolingDataSourceBean
()
{
super
();
setMaxPoolSize
(
10
);
setAllowLocalTransactions
(
true
);
setEnableJdbc4ConnectionTest
(
true
);
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/type/classreading/ConcurrentReferenceCachingMetadataReaderFactory.java
View file @
1783a072
...
...
@@ -46,7 +46,6 @@ public class ConcurrentReferenceCachingMetadataReaderFactory
* the default class loader.
*/
public
ConcurrentReferenceCachingMetadataReaderFactory
()
{
super
();
}
/**
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java
View file @
1783a072
...
...
@@ -123,7 +123,6 @@ public class RestTemplateBuilder {
Set
<
RestTemplateCustomizer
>
restTemplateCustomizers
,
Set
<
RequestFactoryCustomizer
>
requestFactoryCustomizers
,
Set
<
ClientHttpRequestInterceptor
>
interceptors
)
{
super
();
this
.
detectRequestFactory
=
detectRequestFactory
;
this
.
rootUri
=
rootUri
;
this
.
messageConverters
=
messageConverters
;
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyReactiveWebServerFactory.java
View file @
1783a072
...
...
@@ -69,7 +69,6 @@ public class JettyReactiveWebServerFactory extends AbstractReactiveWebServerFact
* Create a new {@link JettyServletWebServerFactory} instance.
*/
public
JettyReactiveWebServerFactory
()
{
super
();
}
/**
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyServletWebServerFactory.java
View file @
1783a072
...
...
@@ -122,7 +122,6 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor
* Create a new {@link JettyServletWebServerFactory} instance.
*/
public
JettyServletWebServerFactory
()
{
super
();
}
/**
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatEmbeddedWebappClassLoader.java
View file @
1783a072
...
...
@@ -44,7 +44,6 @@ public class TomcatEmbeddedWebappClassLoader extends ParallelWebappClassLoader {
}
public
TomcatEmbeddedWebappClassLoader
()
{
super
();
}
public
TomcatEmbeddedWebappClassLoader
(
ClassLoader
parent
)
{
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java
View file @
1783a072
...
...
@@ -68,7 +68,6 @@ public class TomcatReactiveWebServerFactory extends AbstractReactiveWebServerFac
* Create a new {@link TomcatServletWebServerFactory} instance.
*/
public
TomcatReactiveWebServerFactory
()
{
super
();
}
/**
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory.java
View file @
1783a072
...
...
@@ -136,7 +136,6 @@ public class TomcatServletWebServerFactory extends AbstractServletWebServerFacto
* Create a new {@link TomcatServletWebServerFactory} instance.
*/
public
TomcatServletWebServerFactory
()
{
super
();
}
/**
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java
View file @
1783a072
...
...
@@ -123,7 +123,6 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac
* Create a new {@link UndertowServletWebServerFactory} instance.
*/
public
UndertowServletWebServerFactory
()
{
super
();
getJsp
().
setRegistered
(
false
);
}
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/GenericReactiveWebApplicationContext.java
View file @
1783a072
...
...
@@ -39,7 +39,6 @@ public class GenericReactiveWebApplicationContext extends GenericApplicationCont
* @see #refresh
*/
public
GenericReactiveWebApplicationContext
()
{
super
();
}
/**
...
...
spring-boot-samples/spring-boot-sample-data-jpa/src/main/java/sample/data/jpa/domain/City.java
View file @
1783a072
...
...
@@ -50,7 +50,6 @@ public class City implements Serializable {
}
public
City
(
String
name
,
String
country
)
{
super
();
this
.
name
=
name
;
this
.
country
=
country
;
}
...
...
spring-boot-samples/spring-boot-sample-data-rest/src/main/java/sample/data/rest/domain/City.java
View file @
1783a072
...
...
@@ -50,7 +50,6 @@ public class City implements Serializable {
}
public
City
(
String
name
,
String
country
)
{
super
();
this
.
name
=
name
;
this
.
country
=
country
;
}
...
...
spring-boot-samples/spring-boot-sample-data-solr/src/main/java/sample/data/solr/Product.java
View file @
1783a072
...
...
@@ -47,7 +47,6 @@ public class Product {
}
public
Product
(
String
id
,
String
name
)
{
super
();
this
.
id
=
id
;
this
.
name
=
name
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment