From 8e03982bcad1b29377eaf8994eb29233ddc91628 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 13 Dec 2019 11:45:56 -0800 Subject: [PATCH] Fix checkstyle violation --- .../boot/web/embedded/netty/SslServerCustomizer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }