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
96250743
Commit
96250743
authored
Dec 09, 2017
by
Johnny Lim
Committed by
Stephane Nicoll
Dec 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing "abstract" keywords
Closes gh-11303
parent
954cf72d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
AbstractFreeMarkerConfiguration.java
...configure/freemarker/AbstractFreeMarkerConfiguration.java
+1
-1
AbstractSessionCondition.java
.../boot/autoconfigure/session/AbstractSessionCondition.java
+1
-1
AbstractSpringBootTestEmbeddedReactiveWebEnvironmentTests.java
...actSpringBootTestEmbeddedReactiveWebEnvironmentTests.java
+1
-1
AbstractSpringBootTestWebServerWebEnvironmentTests.java
...t/AbstractSpringBootTestWebServerWebEnvironmentTests.java
+1
-1
AbstractExecutableArchiveLauncherTests.java
...k/boot/loader/AbstractExecutableArchiveLauncherTests.java
+1
-1
AbstractConfigurableWebServerFactory.java
...boot/web/server/AbstractConfigurableWebServerFactory.java
+1
-1
SpringApplicationTests.java
...java/org/springframework/boot/SpringApplicationTests.java
+1
-1
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/freemarker/AbstractFreeMarkerConfiguration.java
View file @
96250743
...
@@ -25,7 +25,7 @@ import org.springframework.ui.freemarker.FreeMarkerConfigurationFactory;
...
@@ -25,7 +25,7 @@ import org.springframework.ui.freemarker.FreeMarkerConfigurationFactory;
*
*
* @author Brian Clozel
* @author Brian Clozel
*/
*/
class
AbstractFreeMarkerConfiguration
{
abstract
class
AbstractFreeMarkerConfiguration
{
private
final
FreeMarkerProperties
properties
;
private
final
FreeMarkerProperties
properties
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/AbstractSessionCondition.java
View file @
96250743
...
@@ -35,7 +35,7 @@ import org.springframework.core.type.AnnotationMetadata;
...
@@ -35,7 +35,7 @@ import org.springframework.core.type.AnnotationMetadata;
* @author Madhura Bhave
* @author Madhura Bhave
* @author Andy Wilkinson
* @author Andy Wilkinson
*/
*/
class
AbstractSessionCondition
extends
SpringBootCondition
{
abstract
class
AbstractSessionCondition
extends
SpringBootCondition
{
private
final
WebApplicationType
webApplicationType
;
private
final
WebApplicationType
webApplicationType
;
...
...
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/AbstractSpringBootTestEmbeddedReactiveWebEnvironmentTests.java
View file @
96250743
...
@@ -88,7 +88,7 @@ public abstract class AbstractSpringBootTestEmbeddedReactiveWebEnvironmentTests
...
@@ -88,7 +88,7 @@ public abstract class AbstractSpringBootTestEmbeddedReactiveWebEnvironmentTests
assertThat
(
this
.
value
).
isEqualTo
(
123
);
assertThat
(
this
.
value
).
isEqualTo
(
123
);
}
}
protected
static
class
AbstractConfig
{
protected
static
abstract
class
AbstractConfig
{
@Value
(
"${server.port:8080}"
)
@Value
(
"${server.port:8080}"
)
private
int
port
=
8080
;
private
int
port
=
8080
;
...
...
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/AbstractSpringBootTestWebServerWebEnvironmentTests.java
View file @
96250743
...
@@ -92,7 +92,7 @@ public abstract class AbstractSpringBootTestWebServerWebEnvironmentTests {
...
@@ -92,7 +92,7 @@ public abstract class AbstractSpringBootTestWebServerWebEnvironmentTests {
WebApplicationContextUtils
.
getWebApplicationContext
(
this
.
servletContext
));
WebApplicationContextUtils
.
getWebApplicationContext
(
this
.
servletContext
));
}
}
protected
static
class
AbstractConfig
{
protected
static
abstract
class
AbstractConfig
{
@Value
(
"${server.port:8080}"
)
@Value
(
"${server.port:8080}"
)
private
int
port
=
8080
;
private
int
port
=
8080
;
...
...
spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/AbstractExecutableArchiveLauncherTests.java
View file @
96250743
...
@@ -43,7 +43,7 @@ import org.springframework.util.FileCopyUtils;
...
@@ -43,7 +43,7 @@ import org.springframework.util.FileCopyUtils;
*
*
* @author Andy Wilkinson
* @author Andy Wilkinson
*/
*/
public
class
AbstractExecutableArchiveLauncherTests
{
public
abstract
class
AbstractExecutableArchiveLauncherTests
{
@Rule
@Rule
public
TemporaryFolder
temp
=
new
TemporaryFolder
();
public
TemporaryFolder
temp
=
new
TemporaryFolder
();
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/AbstractConfigurableWebServerFactory.java
View file @
96250743
...
@@ -37,7 +37,7 @@ import org.springframework.util.Assert;
...
@@ -37,7 +37,7 @@ import org.springframework.util.Assert;
* @author Brian Clozel
* @author Brian Clozel
* @since 2.0.0
* @since 2.0.0
*/
*/
public
class
AbstractConfigurableWebServerFactory
public
abstract
class
AbstractConfigurableWebServerFactory
implements
ConfigurableWebServerFactory
{
implements
ConfigurableWebServerFactory
{
private
int
port
=
8080
;
private
int
port
=
8080
;
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/SpringApplicationTests.java
View file @
96250743
...
@@ -1277,7 +1277,7 @@ public class SpringApplicationTests {
...
@@ -1277,7 +1277,7 @@ public class SpringApplicationTests {
}
}
static
class
AbstractTestRunner
implements
ApplicationContextAware
,
Ordered
{
static
abstract
class
AbstractTestRunner
implements
ApplicationContextAware
,
Ordered
{
private
final
String
[]
expectedBefore
;
private
final
String
[]
expectedBefore
;
...
...
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