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
f3472bee
Commit
f3472bee
authored
Sep 25, 2017
by
dreis2211
Committed by
Stephane Nicoll
Sep 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant semicolons
Closes gh-10422
parent
bbee9439
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
26 additions
and
26 deletions
+26
-26
Token.java
...mework/boot/actuate/autoconfigure/cloudfoundry/Token.java
+1
-1
ManagementContextAutoConfiguration.java
...figure/web/server/ManagementContextAutoConfiguration.java
+1
-1
CacheType.java
...g/springframework/boot/autoconfigure/cache/CacheType.java
+1
-1
KafkaProperties.java
...ngframework/boot/autoconfigure/kafka/KafkaProperties.java
+1
-1
StoreType.java
...springframework/boot/autoconfigure/session/StoreType.java
+1
-1
HttpMessageConvertersTests.java
...k/boot/autoconfigure/http/HttpMessageConvertersTests.java
+2
-2
BasicErrorControllerDirectMockMvcTests.java
...servlet/error/BasicErrorControllerDirectMockMvcTests.java
+1
-1
CommandRunnerTests.java
.../springframework/boot/cli/command/CommandRunnerTests.java
+1
-1
FileSystemWatcher.java
...gframework/boot/devtools/filewatch/FileSystemWatcher.java
+1
-1
JsonExcludeFilter.java
...ework/boot/test/autoconfigure/json/JsonExcludeFilter.java
+1
-1
WebMvcTypeExcludeFilter.java
...st/autoconfigure/web/servlet/WebMvcTypeExcludeFilter.java
+1
-1
TestPropertyValues.java
...rg/springframework/boot/test/util/TestPropertyValues.java
+1
-1
SpringBootMockServletContextTests.java
...boot/test/mock/web/SpringBootMockServletContextTests.java
+1
-1
ApplicationPluginAction.java
...framework/boot/gradle/plugin/ApplicationPluginAction.java
+1
-1
ZipCompression.java
...gframework/boot/gradle/tasks/bundling/ZipCompression.java
+1
-1
SpringBootExceptionHandler.java
.../org/springframework/boot/SpringBootExceptionHandler.java
+1
-1
WebApplicationType.java
...ain/java/org/springframework/boot/WebApplicationType.java
+1
-1
JacksonJsonParser.java
...java/org/springframework/boot/json/JacksonJsonParser.java
+2
-2
SpringApplicationTests.java
...java/org/springframework/boot/SpringApplicationTests.java
+1
-1
MapConfigurationPropertySourceTests.java
...roperties/source/MapConfigurationPropertySourceTests.java
+1
-1
BeanCurrentlyInCreationFailureAnalyzerTests.java
...analyzer/BeanCurrentlyInCreationFailureAnalyzerTests.java
+1
-1
PoolingConnectionFactoryBeanTests.java
.../boot/jta/bitronix/PoolingConnectionFactoryBeanTests.java
+1
-1
AbstractServletWebServerFactoryTests.java
.../servlet/server/AbstractServletWebServerFactoryTests.java
+1
-1
SpringBootServletInitializerTests.java
...eb/servlet/support/SpringBootServletInitializerTests.java
+1
-1
No files found.
spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/cloudfoundry/Token.java
View file @
f3472bee
...
...
@@ -120,6 +120,6 @@ class Token {
@Override
public
String
toString
()
{
return
this
.
encoded
;
}
;
}
}
spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/ManagementContextAutoConfiguration.java
View file @
f3472bee
...
...
@@ -184,7 +184,7 @@ public class ManagementContextAutoConfiguration {
if
(
event
instanceof
ApplicationFailedEvent
)
{
onApplicationFailedEvent
((
ApplicationFailedEvent
)
event
);
}
}
;
}
private
void
onContextClosedEvent
(
ContextClosedEvent
event
)
{
propagateCloseIfNecessary
(
event
.
getApplicationContext
());
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheType.java
View file @
f3472bee
...
...
@@ -74,6 +74,6 @@ public enum CacheType {
/**
* No caching.
*/
NONE
;
NONE
}
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java
View file @
f3472bee
...
...
@@ -766,7 +766,7 @@ public class KafkaProperties {
/**
* Invokes the endpoint with a batch of ConsumerRecords.
*/
BATCH
;
BATCH
}
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/session/StoreType.java
View file @
f3472bee
...
...
@@ -49,6 +49,6 @@ public enum StoreType {
/**
* No session data-store.
*/
NONE
;
NONE
}
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/http/HttpMessageConvertersTests.java
View file @
f3472bee
...
...
@@ -122,7 +122,7 @@ public class HttpMessageConvertersTests {
}
}
return
converters
;
}
;
}
};
List
<
Class
<?>>
converterClasses
=
new
ArrayList
<>();
for
(
HttpMessageConverter
<?>
converter
:
converters
)
{
...
...
@@ -152,7 +152,7 @@ public class HttpMessageConvertersTests {
}
}
return
converters
;
}
;
}
};
List
<
Class
<?>>
converterClasses
=
new
ArrayList
<>();
for
(
HttpMessageConverter
<?>
converter
:
extractFormPartConverters
(
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/servlet/error/BasicErrorControllerDirectMockMvcTests.java
View file @
f3472bee
...
...
@@ -185,7 +185,7 @@ public class BasicErrorControllerDirectMockMvcTests {
@Pointcut
(
"within(@org.springframework.stereotype.Controller *)"
)
private
void
controllerPointCut
()
{
}
;
}
@Around
(
"controllerPointCut()"
)
public
Object
mvcAdvice
(
ProceedingJoinPoint
pjp
)
throws
Throwable
{
...
...
spring-boot-cli/src/test/java/org/springframework/boot/cli/command/CommandRunnerTests.java
View file @
f3472bee
...
...
@@ -77,7 +77,7 @@ public class CommandRunnerTests {
protected
void
showUsage
()
{
CommandRunnerTests
.
this
.
calls
.
add
(
Call
.
SHOW_USAGE
);
super
.
showUsage
();
}
;
}
@Override
protected
boolean
errorMessage
(
String
message
)
{
...
...
spring-boot-devtools/src/main/java/org/springframework/boot/devtools/filewatch/FileSystemWatcher.java
View file @
f3472bee
...
...
@@ -242,7 +242,7 @@ public class FileSystemWatcher {
}
remainingScans
=
this
.
remainingScans
.
get
();
}
}
;
}
private
void
scan
()
throws
InterruptedException
{
Thread
.
sleep
(
this
.
pollInterval
-
this
.
quietPeriod
);
...
...
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/json/JsonExcludeFilter.java
View file @
f3472bee
...
...
@@ -42,7 +42,7 @@ class JsonExcludeFilter extends AnnotationCustomizableTypeExcludeFilter {
includes
.
add
(
Module
.
class
);
includes
.
add
(
JsonComponent
.
class
);
DEFAULT_INCLUDES
=
Collections
.
unmodifiableSet
(
includes
);
}
;
}
private
final
JsonTest
annotation
;
...
...
spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/servlet/WebMvcTypeExcludeFilter.java
View file @
f3472bee
...
...
@@ -57,7 +57,7 @@ class WebMvcTypeExcludeFilter extends AnnotationCustomizableTypeExcludeFilter {
includes
.
add
(
HttpMessageConverter
.
class
);
includes
.
add
(
ErrorAttributes
.
class
);
DEFAULT_INCLUDES
=
Collections
.
unmodifiableSet
(
includes
);
}
;
}
private
static
final
Set
<
Class
<?>>
DEFAULT_INCLUDES_AND_CONTROLLER
;
...
...
spring-boot-test/src/main/java/org/springframework/boot/test/util/TestPropertyValues.java
View file @
f3472bee
...
...
@@ -299,7 +299,7 @@ public final class TestPropertyValues {
@Override
public
void
close
()
{
this
.
previous
.
forEach
(
this
::
setOrClear
);
}
;
}
private
String
setOrClear
(
String
name
,
String
value
)
{
Assert
.
notNull
(
name
,
"Name must not be null"
);
...
...
spring-boot-test/src/test/java/org/springframework/boot/test/mock/web/SpringBootMockServletContextTests.java
View file @
f3472bee
...
...
@@ -80,7 +80,7 @@ public class SpringBootMockServletContextTests implements ServletContextAware {
protected
String
getResourceLocation
(
String
path
)
{
// Don't include the Spring Boot defaults for this test
return
getResourceBasePathLocation
(
path
);
}
;
}
};
URL
resource
=
context
.
getResource
(
"/"
);
assertThat
(
resource
).
isNotEqualTo
(
nullValue
());
...
...
spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/ApplicationPluginAction.java
View file @
f3472bee
...
...
@@ -84,7 +84,7 @@ final class ApplicationPluginAction implements PluginApplicationAction {
private
String
loadResource
(
String
name
)
{
try
(
InputStreamReader
reader
=
new
InputStreamReader
(
getClass
().
getResourceAsStream
(
name
))
;
)
{
getClass
().
getResourceAsStream
(
name
)))
{
char
[]
buffer
=
new
char
[
4096
];
int
read
=
0
;
StringWriter
writer
=
new
StringWriter
();
...
...
spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/ZipCompression.java
View file @
f3472bee
...
...
@@ -34,6 +34,6 @@ public enum ZipCompression {
/**
* The entry should be {@link ZipEntry#DEFLATED} in the archive.
*/
DEFLATED
;
DEFLATED
}
spring-boot/src/main/java/org/springframework/boot/SpringBootExceptionHandler.java
View file @
f3472bee
...
...
@@ -123,7 +123,7 @@ class SpringBootExceptionHandler implements UncaughtExceptionHandler {
Thread
.
currentThread
().
getUncaughtExceptionHandler
());
Thread
.
currentThread
().
setUncaughtExceptionHandler
(
handler
);
return
handler
;
}
;
}
}
...
...
spring-boot/src/main/java/org/springframework/boot/WebApplicationType.java
View file @
f3472bee
...
...
@@ -41,6 +41,6 @@ public enum WebApplicationType {
* The application should run as a reactive web application and should start an
* embedded reactive web server.
*/
REACTIVE
;
REACTIVE
}
spring-boot/src/main/java/org/springframework/boot/json/JacksonJsonParser.java
View file @
f3472bee
...
...
@@ -65,10 +65,10 @@ public class JacksonJsonParser implements JsonParser {
private
static
class
MapTypeReference
extends
TypeReference
<
Map
<
String
,
Object
>>
{
}
;
}
private
static
class
ListTypeReference
extends
TypeReference
<
List
<
Object
>>
{
}
;
}
}
spring-boot/src/test/java/org/springframework/boot/SpringApplicationTests.java
View file @
f3472bee
...
...
@@ -957,7 +957,7 @@ public class SpringApplicationTests {
FailingConfig
.
class
);
application
.
setWebApplicationType
(
WebApplicationType
.
NONE
);
application
.
run
();
}
;
}
};
thread
.
start
();
thread
.
join
(
6000
);
...
...
spring-boot/src/test/java/org/springframework/boot/context/properties/source/MapConfigurationPropertySourceTests.java
View file @
f3472bee
...
...
@@ -113,6 +113,6 @@ public class MapConfigurationPropertySourceTests {
ConfigurationProperty
property
=
source
.
getConfigurationProperty
(
ConfigurationPropertyName
.
of
(
name
));
return
(
property
==
null
?
null
:
property
.
getValue
());
}
;
}
}
spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/BeanCurrentlyInCreationFailureAnalyzerTests.java
View file @
f3472bee
...
...
@@ -144,7 +144,7 @@ public class BeanCurrentlyInCreationFailureAnalyzerTests {
private
Exception
createFailure
(
Class
<?>
configuration
)
{
try
(
ConfigurableApplicationContext
context
=
new
AnnotationConfigApplicationContext
(
configuration
)
;
)
{
configuration
))
{
fail
(
"Expected failure did not occur"
);
return
null
;
}
...
...
spring-boot/src/test/java/org/springframework/boot/jta/bitronix/PoolingConnectionFactoryBeanTests.java
View file @
f3472bee
...
...
@@ -36,7 +36,7 @@ public class PoolingConnectionFactoryBeanTests {
@Override
public
synchronized
void
init
()
{
// Stub out for the tests
}
;
}
};
@Test
...
...
spring-boot/src/test/java/org/springframework/boot/web/servlet/server/AbstractServletWebServerFactoryTests.java
View file @
f3472bee
...
...
@@ -1227,7 +1227,7 @@ public abstract class AbstractServletWebServerFactoryTests {
return
this
.
initCount
;
}
}
;
}
public
interface
BlockedPortAction
{
...
...
spring-boot/src/test/java/org/springframework/boot/web/servlet/support/SpringBootServletInitializerTests.java
View file @
f3472bee
...
...
@@ -132,7 +132,7 @@ public class SpringBootServletInitializerTests {
protected
WebApplicationContext
run
(
SpringApplication
application
)
{
SpringBootServletInitializerTests
.
this
.
application
=
application
;
return
null
;
}
;
}
}
...
...
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