Polish "Downcast to InetSocketAddress for Jetty 10"
This commit uses the target type where getRemoteAddress and getLocalAddress are defined. See gh-27120
This commit is contained in:
parent
62e916534f
commit
c6e644e5c3
|
|
@ -306,7 +306,7 @@ public class JettyWebSocketSession extends AbstractWebSocketSession<Session> {
|
|||
|
||||
static {
|
||||
try {
|
||||
Class<?> type = loader.loadClass("org.eclipse.jetty.websocket.api.WebSocketPolicy");
|
||||
Class<?> type = loader.loadClass("org.eclipse.jetty.websocket.api.Session");
|
||||
getTextMessageSizeLimitMethod = type.getMethod("getMaxTextMessageSize");
|
||||
getBinaryMessageSizeLimitMethod = type.getMethod("getMaxBinaryMessageSize");
|
||||
getRemoteAddressMethod = type.getMethod("getRemoteAddress");
|
||||
|
|
|
|||
Loading…
Reference in New Issue