Skip to content

Commit aa98dc7

Browse files
author
Dave Syer
committed
Make some nested private classes package private
Fixes spring-projectsgh-13490 (at least as far as spring-boot-autoconfigure is concerned).
1 parent 1bbe3af commit aa98dc7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/HazelcastJCacheCustomizationConfiguration.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ public HazelcastPropertiesCustomizer hazelcastPropertiesCustomizer(
4343
return new HazelcastPropertiesCustomizer(hazelcastInstance.getIfUnique());
4444
}
4545

46-
private static class HazelcastPropertiesCustomizer
47-
implements JCachePropertiesCustomizer {
46+
static class HazelcastPropertiesCustomizer implements JCachePropertiesCustomizer {
4847

4948
private final HazelcastInstance hazelcastInstance;
5049

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ interface ResourceHandlerRegistrationCustomizer {
292292

293293
}
294294

295-
private static class ResourceChainResourceHandlerRegistrationCustomizer
295+
static class ResourceChainResourceHandlerRegistrationCustomizer
296296
implements ResourceHandlerRegistrationCustomizer {
297297

298298
@Autowired

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ interface ResourceHandlerRegistrationCustomizer {
598598

599599
}
600600

601-
private static class ResourceChainResourceHandlerRegistrationCustomizer
601+
static class ResourceChainResourceHandlerRegistrationCustomizer
602602
implements ResourceHandlerRegistrationCustomizer {
603603

604604
@Autowired

0 commit comments

Comments
 (0)