Make WebSocketConnectionManager#isConnected public

See gh-28785
This commit is contained in:
npriebe 2022-07-11 15:20:13 +02:00 committed by rstoyanchev
parent 597c687da8
commit cd10171f98
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ public class WebSocketConnectionManager extends ConnectionManagerSupport {
}
@Override
protected boolean isConnected() {
public boolean isConnected() {
return (this.webSocketSession != null && this.webSocketSession.isOpen());
}