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
243b1263
Commit
243b1263
authored
Dec 09, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11303 from izeye:add-abstract
* pr/11303: Add missing "abstract" keywords
parents
954cf72d
96250743
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 @
243b1263
...
...
@@ -25,7 +25,7 @@ import org.springframework.ui.freemarker.FreeMarkerConfigurationFactory;
*
* @author Brian Clozel
*/
class
AbstractFreeMarkerConfiguration
{
abstract
class
AbstractFreeMarkerConfiguration
{
private
final
FreeMarkerProperties
properties
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/AbstractSessionCondition.java
View file @
243b1263
...
...
@@ -35,7 +35,7 @@ import org.springframework.core.type.AnnotationMetadata;
* @author Madhura Bhave
* @author Andy Wilkinson
*/
class
AbstractSessionCondition
extends
SpringBootCondition
{
abstract
class
AbstractSessionCondition
extends
SpringBootCondition
{
private
final
WebApplicationType
webApplicationType
;
...
...
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/AbstractSpringBootTestEmbeddedReactiveWebEnvironmentTests.java
View file @
243b1263
...
...
@@ -88,7 +88,7 @@ public abstract class AbstractSpringBootTestEmbeddedReactiveWebEnvironmentTests
assertThat
(
this
.
value
).
isEqualTo
(
123
);
}
protected
static
class
AbstractConfig
{
protected
static
abstract
class
AbstractConfig
{
@Value
(
"${server.port:8080}"
)
private
int
port
=
8080
;
...
...
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/AbstractSpringBootTestWebServerWebEnvironmentTests.java
View file @
243b1263
...
...
@@ -92,7 +92,7 @@ public abstract class AbstractSpringBootTestWebServerWebEnvironmentTests {
WebApplicationContextUtils
.
getWebApplicationContext
(
this
.
servletContext
));
}
protected
static
class
AbstractConfig
{
protected
static
abstract
class
AbstractConfig
{
@Value
(
"${server.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 @
243b1263
...
...
@@ -43,7 +43,7 @@ import org.springframework.util.FileCopyUtils;
*
* @author Andy Wilkinson
*/
public
class
AbstractExecutableArchiveLauncherTests
{
public
abstract
class
AbstractExecutableArchiveLauncherTests
{
@Rule
public
TemporaryFolder
temp
=
new
TemporaryFolder
();
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/server/AbstractConfigurableWebServerFactory.java
View file @
243b1263
...
...
@@ -37,7 +37,7 @@ import org.springframework.util.Assert;
* @author Brian Clozel
* @since 2.0.0
*/
public
class
AbstractConfigurableWebServerFactory
public
abstract
class
AbstractConfigurableWebServerFactory
implements
ConfigurableWebServerFactory
{
private
int
port
=
8080
;
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/SpringApplicationTests.java
View file @
243b1263
...
...
@@ -1277,7 +1277,7 @@ public class SpringApplicationTests {
}
static
class
AbstractTestRunner
implements
ApplicationContextAware
,
Ordered
{
static
abstract
class
AbstractTestRunner
implements
ApplicationContextAware
,
Ordered
{
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