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
b0433d66
Commit
b0433d66
authored
May 11, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0.x'
parents
b88a20fa
846e43ff
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 @
b0433d66
...
@@ -38,6 +38,6 @@ public enum ShowDetails {
...
@@ -38,6 +38,6 @@ public enum ShowDetails {
/**
/**
* Always show details in the response.
* 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 @
b0433d66
...
@@ -277,7 +277,7 @@ public class ScheduledTasksEndpoint {
...
@@ -277,7 +277,7 @@ public class ScheduledTasksEndpoint {
private
enum
TaskType
{
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 @
b0433d66
...
@@ -42,6 +42,6 @@ public enum RepositoryType {
...
@@ -42,6 +42,6 @@ public enum RepositoryType {
/**
/**
* Enables reactive repositories.
* 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 @
b0433d66
...
@@ -36,7 +36,7 @@ public class ZipHeaderPeekInputStreamTests {
...
@@ -36,7 +36,7 @@ public class ZipHeaderPeekInputStreamTests {
public
void
hasZipHeaderReturnsTrueWhenStreamStartsWithZipHeader
()
public
void
hasZipHeaderReturnsTrueWhenStreamStartsWithZipHeader
()
throws
IOException
{
throws
IOException
{
try
(
ZipHeaderPeekInputStream
in
=
new
ZipHeaderPeekInputStream
(
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
();
assertThat
(
in
.
hasZipHeader
()).
isTrue
();
}
}
}
}
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/BindFailureAnalyzerTests.java
View file @
b0433d66
...
@@ -203,7 +203,7 @@ public class BindFailureAnalyzerTests {
...
@@ -203,7 +203,7 @@ public class BindFailureAnalyzerTests {
enum
Fruit
{
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