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<>();