Fix modifiers order
See gh-11681
This commit is contained in:
committed by
Stephane Nicoll
parent
322a629b53
commit
e2d05607f2
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user