From 91fca72c9905a324637ffdabb0ed0fd4a09dcc80 Mon Sep 17 00:00:00 2001 From: abilan Date: Wed, 19 Apr 2023 13:18:48 -0400 Subject: [PATCH] Remove trailing space in IntWebSocketContainer **Cherry-pick to `6.0.x` & `5.5.x`** --- .../integration/websocket/IntegrationWebSocketContainer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-websocket/src/main/java/org/springframework/integration/websocket/IntegrationWebSocketContainer.java b/spring-integration-websocket/src/main/java/org/springframework/integration/websocket/IntegrationWebSocketContainer.java index 6436a386b2..fab87e2fd2 100644 --- a/spring-integration-websocket/src/main/java/org/springframework/integration/websocket/IntegrationWebSocketContainer.java +++ b/spring-integration-websocket/src/main/java/org/springframework/integration/websocket/IntegrationWebSocketContainer.java @@ -68,7 +68,7 @@ public abstract class IntegrationWebSocketContainer implements DisposableBean { protected final Log logger = LogFactory.getLog(getClass()); // NOSONAR private WebSocketHandler webSocketHandler = new IntegrationWebSocketHandler(); - + protected final Map sessions = new ConcurrentHashMap<>(); // NOSONAR private final List supportedProtocols = new ArrayList<>();