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
87bf0b26
Commit
87bf0b26
authored
Feb 13, 2018
by
Johnny Lim
Committed by
Stephane Nicoll
Feb 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish modifier order
See gh-12019
parent
114ece56
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
EndpointRequest.java
...uate/autoconfigure/security/reactive/EndpointRequest.java
+1
-1
EndpointRequest.java
...tuate/autoconfigure/security/servlet/EndpointRequest.java
+1
-1
ElasticsearchHealthIndicatorTests.java
...uate/elasticsearch/ElasticsearchHealthIndicatorTests.java
+1
-1
StaticResourceRequest.java
...utoconfigure/security/reactive/StaticResourceRequest.java
+1
-1
ArtemisAutoConfigurationTests.java
...oconfigure/jms/artemis/ArtemisAutoConfigurationTests.java
+1
-1
TestableInitialContextFactory.java
...oot/autoconfigure/jndi/TestableInitialContextFactory.java
+1
-1
HttpTunnelPayload.java
...ework/boot/devtools/tunnel/payload/HttpTunnelPayload.java
+1
-1
LambdaSafe.java
...c/main/java/org/springframework/boot/util/LambdaSafe.java
+1
-1
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/security/reactive/EndpointRequest.java
View file @
87bf0b26
...
...
@@ -91,7 +91,7 @@ public final class EndpointRequest {
* The {@link ServerWebExchangeMatcher} used to match against {@link Endpoint actuator
* endpoints}.
*/
public
final
static
class
EndpointServerWebExchangeMatcher
public
static
final
class
EndpointServerWebExchangeMatcher
extends
ApplicationContextServerWebExchangeMatcher
<
PathMappedEndpoints
>
{
private
final
List
<
Object
>
includes
;
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/security/servlet/EndpointRequest.java
View file @
87bf0b26
...
...
@@ -89,7 +89,7 @@ public final class EndpointRequest {
/**
* The request matcher used to match against {@link Endpoint actuator endpoints}.
*/
public
final
static
class
EndpointRequestMatcher
public
static
final
class
EndpointRequestMatcher
extends
ApplicationContextRequestMatcher
<
PathMappedEndpoints
>
{
private
final
List
<
Object
>
includes
;
...
...
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/elasticsearch/ElasticsearchHealthIndicatorTests.java
View file @
87bf0b26
...
...
@@ -164,7 +164,7 @@ public class ElasticsearchHealthIndicatorTests {
assertThat
((
T
)
details
.
get
(
detail
)).
isEqualTo
(
value
);
}
private
final
static
class
StubClusterHealthResponse
extends
ClusterHealthResponse
{
private
static
final
class
StubClusterHealthResponse
extends
ClusterHealthResponse
{
private
final
ClusterHealthStatus
status
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/reactive/StaticResourceRequest.java
View file @
87bf0b26
...
...
@@ -92,7 +92,7 @@ public final class StaticResourceRequest {
* The server web exchange matcher used to match against resource
* {@link StaticResourceLocation Locations}.
*/
public
final
static
class
StaticResourceServerWebExchange
public
static
final
class
StaticResourceServerWebExchange
implements
ServerWebExchangeMatcher
{
private
final
Set
<
StaticResourceLocation
>
locations
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisAutoConfigurationTests.java
View file @
87bf0b26
...
...
@@ -319,7 +319,7 @@ public class ArtemisAutoConfigurationTests {
return
transportConfigurations
[
0
];
}
private
final
static
class
DestinationChecker
{
private
static
final
class
DestinationChecker
{
private
final
JmsTemplate
jmsTemplate
;
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/jndi/TestableInitialContextFactory.java
View file @
87bf0b26
...
...
@@ -64,7 +64,7 @@ public class TestableInitialContextFactory implements InitialContextFactory {
return
context
;
}
private
final
static
class
TestableContext
extends
InitialContext
{
private
static
final
class
TestableContext
extends
InitialContext
{
private
final
Map
<
String
,
Object
>
bindings
=
new
HashMap
<>();
...
...
spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/tunnel/payload/HttpTunnelPayload.java
View file @
87bf0b26
...
...
@@ -45,7 +45,7 @@ public class HttpTunnelPayload {
private
static
final
int
BUFFER_SIZE
=
1024
*
100
;
protected
final
static
char
[]
HEX_CHARS
=
"0123456789ABCDEF"
.
toCharArray
();
protected
static
final
char
[]
HEX_CHARS
=
"0123456789ABCDEF"
.
toCharArray
();
private
static
final
Log
logger
=
LogFactory
.
getLog
(
HttpTunnelPayload
.
class
);
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java
View file @
87bf0b26
...
...
@@ -370,7 +370,7 @@ public final class LambdaSafe {
* {@code null} as a valid value.
* @param <R> The result type
*/
public
final
static
class
InvocationResult
<
R
>
{
public
static
final
class
InvocationResult
<
R
>
{
private
static
final
InvocationResult
<?>
NONE
=
new
InvocationResult
<>(
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