Fix modifiers order

See gh-11681
This commit is contained in:
igor-suhorukov
2018-01-19 01:18:18 +03:00
committed by Stephane Nicoll
parent 322a629b53
commit e2d05607f2
22 changed files with 25 additions and 25 deletions

View File

@@ -72,7 +72,7 @@ public class ConfigurationWarningsApplicationContextInitializer
/**
* {@link BeanDefinitionRegistryPostProcessor} to report warnings.
*/
protected final static class ConfigurationWarningsPostProcessor
protected static final class ConfigurationWarningsPostProcessor
implements PriorityOrdered, BeanDefinitionRegistryPostProcessor {
private Check[] checks;

View File

@@ -169,7 +169,7 @@ public final class PropertyMapper {
* A source that is in the process of being mapped.
* @param <T> the source type
*/
public final static class Source<T> {
public static final class Source<T> {
private final Supplier<T> supplier;

View File

@@ -94,7 +94,7 @@ public class TextResourceOrigin implements Origin {
/**
* A location (line and column number) within the resource.
*/
public final static class Location {
public static final class Location {
private final int line;

View File

@@ -630,7 +630,7 @@ public class RestTemplateBuilder {
/**
* {@link RequestFactoryCustomizer} to call a "set timeout" method.
*/
private static abstract class TimeoutRequestFactoryCustomizer
private abstract static class TimeoutRequestFactoryCustomizer
implements RequestFactoryCustomizer {
private final int timeout;

View File

@@ -321,7 +321,7 @@ public class UndertowServletWebServer implements WebServer {
/**
* An active Undertow port.
*/
private final static class Port {
private static final class Port {
private final int number;

View File

@@ -233,7 +233,7 @@ public class UndertowWebServer implements WebServer {
/**
* An active Undertow port.
*/
private final static class Port {
private static final class Port {
private final int number;

View File

@@ -124,7 +124,7 @@ public class SpringProfileDocumentMatcher implements DocumentMatcher {
/**
* Base class for profile matchers.
*/
private static abstract class ProfilesMatcher {
private abstract static class ProfilesMatcher {
public final MatchStatus matches(Set<String> profiles) {
if (CollectionUtils.isEmpty(profiles)) {