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
e6a23fa3
Commit
e6a23fa3
authored
May 11, 2018
by
dreis2211
Committed by
Stephane Nicoll
May 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary semicolons
Closes gh-13144
parent
972d9527
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
ShowDetails.java
.../org/springframework/boot/actuate/health/ShowDetails.java
+1
-1
ScheduledTasksEndpoint.java
...ework/boot/actuate/scheduling/ScheduledTasksEndpoint.java
+1
-1
RepositoryType.java
...ringframework/boot/autoconfigure/data/RepositoryType.java
+1
-1
ZipHeaderPeekInputStreamTests.java
...work/boot/loader/tools/ZipHeaderPeekInputStreamTests.java
+1
-1
BindFailureAnalyzerTests.java
...k/boot/diagnostics/analyzer/BindFailureAnalyzerTests.java
+1
-1
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/ShowDetails.java
View file @
e6a23fa3
...
...
@@ -38,6 +38,6 @@ public enum ShowDetails {
/**
* Always show details in the response.
*/
ALWAYS
;
ALWAYS
}
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/scheduling/ScheduledTasksEndpoint.java
View file @
e6a23fa3
...
...
@@ -277,7 +277,7 @@ public class ScheduledTasksEndpoint {
private
enum
TaskType
{
CRON
,
FIXED_DELAY
,
FIXED_RATE
;
CRON
,
FIXED_DELAY
,
FIXED_RATE
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/RepositoryType.java
View file @
e6a23fa3
...
...
@@ -42,6 +42,6 @@ public enum RepositoryType {
/**
* Enables reactive repositories.
*/
REACTIVE
;
REACTIVE
}
spring-boot-project/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/ZipHeaderPeekInputStreamTests.java
View file @
e6a23fa3
...
...
@@ -36,7 +36,7 @@ public class ZipHeaderPeekInputStreamTests {
public
void
hasZipHeaderReturnsTrueWhenStreamStartsWithZipHeader
()
throws
IOException
{
try
(
ZipHeaderPeekInputStream
in
=
new
ZipHeaderPeekInputStream
(
new
ByteArrayInputStream
(
new
byte
[]
{
0x50
,
0x4b
,
0x03
,
0x04
,
5
,
6
}))
;
)
{
new
ByteArrayInputStream
(
new
byte
[]
{
0x50
,
0x4b
,
0x03
,
0x04
,
5
,
6
})))
{
assertThat
(
in
.
hasZipHeader
()).
isTrue
();
}
}
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/BindFailureAnalyzerTests.java
View file @
e6a23fa3
...
...
@@ -203,7 +203,7 @@ public class BindFailureAnalyzerTests {
enum
Fruit
{
APPLE
,
BANANA
,
ORANGE
;
APPLE
,
BANANA
,
ORANGE
}
...
...
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