Commit 87bf0b26 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Polish modifier order

See gh-12019
parent 114ece56
...@@ -91,7 +91,7 @@ public final class EndpointRequest { ...@@ -91,7 +91,7 @@ public final class EndpointRequest {
* The {@link ServerWebExchangeMatcher} used to match against {@link Endpoint actuator * The {@link ServerWebExchangeMatcher} used to match against {@link Endpoint actuator
* endpoints}. * endpoints}.
*/ */
public final static class EndpointServerWebExchangeMatcher public static final class EndpointServerWebExchangeMatcher
extends ApplicationContextServerWebExchangeMatcher<PathMappedEndpoints> { extends ApplicationContextServerWebExchangeMatcher<PathMappedEndpoints> {
private final List<Object> includes; private final List<Object> includes;
......
...@@ -89,7 +89,7 @@ public final class EndpointRequest { ...@@ -89,7 +89,7 @@ public final class EndpointRequest {
/** /**
* The request matcher used to match against {@link Endpoint actuator endpoints}. * The request matcher used to match against {@link Endpoint actuator endpoints}.
*/ */
public final static class EndpointRequestMatcher public static final class EndpointRequestMatcher
extends ApplicationContextRequestMatcher<PathMappedEndpoints> { extends ApplicationContextRequestMatcher<PathMappedEndpoints> {
private final List<Object> includes; private final List<Object> includes;
......
...@@ -164,7 +164,7 @@ public class ElasticsearchHealthIndicatorTests { ...@@ -164,7 +164,7 @@ public class ElasticsearchHealthIndicatorTests {
assertThat((T) details.get(detail)).isEqualTo(value); 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; private final ClusterHealthStatus status;
......
...@@ -92,7 +92,7 @@ public final class StaticResourceRequest { ...@@ -92,7 +92,7 @@ public final class StaticResourceRequest {
* The server web exchange matcher used to match against resource * The server web exchange matcher used to match against resource
* {@link StaticResourceLocation Locations}. * {@link StaticResourceLocation Locations}.
*/ */
public final static class StaticResourceServerWebExchange public static final class StaticResourceServerWebExchange
implements ServerWebExchangeMatcher { implements ServerWebExchangeMatcher {
private final Set<StaticResourceLocation> locations; private final Set<StaticResourceLocation> locations;
......
...@@ -319,7 +319,7 @@ public class ArtemisAutoConfigurationTests { ...@@ -319,7 +319,7 @@ public class ArtemisAutoConfigurationTests {
return transportConfigurations[0]; return transportConfigurations[0];
} }
private final static class DestinationChecker { private static final class DestinationChecker {
private final JmsTemplate jmsTemplate; private final JmsTemplate jmsTemplate;
......
...@@ -64,7 +64,7 @@ public class TestableInitialContextFactory implements InitialContextFactory { ...@@ -64,7 +64,7 @@ public class TestableInitialContextFactory implements InitialContextFactory {
return context; return context;
} }
private final static class TestableContext extends InitialContext { private static final class TestableContext extends InitialContext {
private final Map<String, Object> bindings = new HashMap<>(); private final Map<String, Object> bindings = new HashMap<>();
......
...@@ -45,7 +45,7 @@ public class HttpTunnelPayload { ...@@ -45,7 +45,7 @@ public class HttpTunnelPayload {
private static final int BUFFER_SIZE = 1024 * 100; 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); private static final Log logger = LogFactory.getLog(HttpTunnelPayload.class);
......
...@@ -370,7 +370,7 @@ public final class LambdaSafe { ...@@ -370,7 +370,7 @@ public final class LambdaSafe {
* {@code null} as a valid value. * {@code null} as a valid value.
* @param <R> The result type * @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); private static final InvocationResult<?> NONE = new InvocationResult<>(null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment