diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/SslServerCustomizer.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/SslServerCustomizer.java index e5b8804704d..f2e32e46325 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/SslServerCustomizer.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/SslServerCustomizer.java @@ -190,7 +190,7 @@ public class SslServerCustomizer implements NettyServerCustomizer { this(KeyManagerFactory.getInstance(algorithm), alias, algorithm); } - public ConfigurableAliasKeyManagerFactory(KeyManagerFactory delegate, String alias, String algorithm) { + private ConfigurableAliasKeyManagerFactory(KeyManagerFactory delegate, String alias, String algorithm) { super(new ConfigurableAliasKeyManagerFactorySpi(delegate, alias), delegate.getProvider(), algorithm); }