Fix modifiers order
See gh-11681
This commit is contained in:
committed by
Stephane Nicoll
parent
322a629b53
commit
e2d05607f2
@@ -139,7 +139,7 @@ public abstract class AutoConfigurationPackages {
|
||||
/**
|
||||
* Wrapper for a package import.
|
||||
*/
|
||||
private final static class PackageImport {
|
||||
private static final class PackageImport {
|
||||
|
||||
private final String packageName;
|
||||
|
||||
|
||||
@@ -537,7 +537,7 @@ public class RabbitProperties {
|
||||
|
||||
}
|
||||
|
||||
public static abstract class AmqpContainer {
|
||||
public abstract static class AmqpContainer {
|
||||
|
||||
/**
|
||||
* Whether to start the container automatically on startup.
|
||||
|
||||
@@ -246,7 +246,7 @@ public class EmbeddedMongoAutoConfiguration {
|
||||
* A workaround for the lack of a {@code toString} implementation on
|
||||
* {@code GenericFeatureAwareVersion}.
|
||||
*/
|
||||
private final static class ToStringFriendlyFeatureAwareVersion
|
||||
private static final class ToStringFriendlyFeatureAwareVersion
|
||||
implements IFeatureAwareVersion {
|
||||
|
||||
private final String version;
|
||||
|
||||
@@ -127,7 +127,7 @@ public final class StaticResourceRequest {
|
||||
/**
|
||||
* The request matcher used to match against resource {@link Location Locations}.
|
||||
*/
|
||||
public final static class StaticResourceRequestMatcher
|
||||
public static final class StaticResourceRequestMatcher
|
||||
extends ApplicationContextRequestMatcher<ServerProperties> {
|
||||
|
||||
private final Set<Location> locations;
|
||||
|
||||
@@ -104,7 +104,7 @@ public class SessionAutoConfiguration {
|
||||
/**
|
||||
* {@link ImportSelector} base class to add {@link StoreType} configuration classes.
|
||||
*/
|
||||
static abstract class SessionConfigurationImportSelector implements ImportSelector {
|
||||
abstract static class SessionConfigurationImportSelector implements ImportSelector {
|
||||
|
||||
protected final String[] selectImports(AnnotationMetadata importingClassMetadata,
|
||||
WebApplicationType webApplicationType) {
|
||||
@@ -153,7 +153,7 @@ public class SessionAutoConfiguration {
|
||||
* Base class for beans used to validate that only one supported implementation is
|
||||
* available in the classpath when the store-type property is not set.
|
||||
*/
|
||||
static abstract class AbstractSessionRepositoryImplementationValidator {
|
||||
abstract static class AbstractSessionRepositoryImplementationValidator {
|
||||
|
||||
private final List<String> candidates;
|
||||
|
||||
@@ -233,7 +233,7 @@ public class SessionAutoConfiguration {
|
||||
/**
|
||||
* Base class for validating that a (reactive) session repository bean exists.
|
||||
*/
|
||||
static abstract class AbstractSessionRepositoryValidator {
|
||||
abstract static class AbstractSessionRepositoryValidator {
|
||||
|
||||
private final SessionProperties sessionProperties;
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ public abstract class PathBasedTemplateAvailabilityProvider
|
||||
return false;
|
||||
}
|
||||
|
||||
protected static abstract class TemplateAvailabilityProperties {
|
||||
protected abstract static class TemplateAvailabilityProperties {
|
||||
|
||||
private String prefix;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user