From 67b7c16bc0b5e9f21d38173676d52db4541a997f Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 9 Mar 2022 16:38:10 +0100 Subject: [PATCH] Fix visibility of DefaultSockJsSchedulerContainer Closes gh-28146 --- .../socket/config/annotation/WebSocketConfigurationSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-websocket/src/main/java/org/springframework/web/socket/config/annotation/WebSocketConfigurationSupport.java b/spring-websocket/src/main/java/org/springframework/web/socket/config/annotation/WebSocketConfigurationSupport.java index 7ef20771e0..4478ee9a56 100644 --- a/spring-websocket/src/main/java/org/springframework/web/socket/config/annotation/WebSocketConfigurationSupport.java +++ b/spring-websocket/src/main/java/org/springframework/web/socket/config/annotation/WebSocketConfigurationSupport.java @@ -95,7 +95,7 @@ public class WebSocketConfigurationSupport { } - private static class DefaultSockJsSchedulerContainer implements InitializingBean, DisposableBean { + static class DefaultSockJsSchedulerContainer implements InitializingBean, DisposableBean { @Nullable private final ThreadPoolTaskScheduler scheduler;