Remove trailing space in IntWebSocketContainer

**Cherry-pick to `6.0.x` & `5.5.x`**
This commit is contained in:
abilan
2023-04-19 13:18:48 -04:00
parent 0391bedaeb
commit 91fca72c99

View File

@@ -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<String, WebSocketSession> sessions = new ConcurrentHashMap<>(); // NOSONAR
private final List<String> supportedProtocols = new ArrayList<>();