Polish modifier declaration ordering
Follow that Java language specification.
This commit is contained in:
@@ -142,7 +142,7 @@ public abstract class AutoConfigurationPackages {
|
||||
/**
|
||||
* Wrapper for a package import.
|
||||
*/
|
||||
private final static class PackageImport {
|
||||
private static final class PackageImport {
|
||||
|
||||
private final String packageName;
|
||||
|
||||
|
||||
@@ -228,7 +228,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;
|
||||
|
||||
@@ -77,7 +77,7 @@ public abstract class PathBasedTemplateAvailabilityProvider
|
||||
return false;
|
||||
}
|
||||
|
||||
protected static abstract class TemplateAvailabilityProperties {
|
||||
protected abstract static class TemplateAvailabilityProperties {
|
||||
|
||||
private String prefix;
|
||||
|
||||
|
||||
@@ -1149,7 +1149,7 @@ public class CacheAutoConfigurationTests {
|
||||
|
||||
}
|
||||
|
||||
static abstract class CacheManagerTestCustomizer<T extends CacheManager>
|
||||
abstract static class CacheManagerTestCustomizer<T extends CacheManager>
|
||||
implements CacheManagerCustomizer<T> {
|
||||
|
||||
private T cacheManager;
|
||||
|
||||
@@ -317,7 +317,7 @@ public class ArtemisAutoConfigurationTests {
|
||||
return applicationContext;
|
||||
}
|
||||
|
||||
private final static class DestinationChecker {
|
||||
private static final class DestinationChecker {
|
||||
|
||||
private final JmsTemplate jmsTemplate;
|
||||
|
||||
|
||||
@@ -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<String, Object>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user