Skip to content

Commit

Permalink
Replace deprecated references in WebSocketMessageBrokerStats.toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye committed Sep 16, 2024
1 parent d3755ab commit 8feb4bf
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,10 @@ private String getExecutorStatsInfo(@Nullable Executor executor) {
}

@Override
@SuppressWarnings("removal")
public String toString() {
return "WebSocketSession[" + getWebSocketSessionStatsInfo() + "]" +
", stompSubProtocol[" + getStompSubProtocolStatsInfo() + "]" +
", stompBrokerRelay[" + getStompBrokerRelayStatsInfo() + "]" +
return "WebSocketSession[" + getWebSocketSessionStats() + "]" +
", stompSubProtocol[" + getStompSubProtocolStats() + "]" +
", stompBrokerRelay[" + getStompBrokerRelayStats() + "]" +
", inboundChannel[" + getClientInboundExecutorStatsInfo() + "]" +
", outboundChannel[" + getClientOutboundExecutorStatsInfo() + "]" +
", sockJsScheduler[" + getSockJsTaskSchedulerStatsInfo() + "]";
Expand Down

0 comments on commit 8feb4bf

Please sign in to comment.