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:
Stephane Nicoll
2021-07-13 09:32:16 +02:00
parent 62e916534f
commit c6e644e5c3

View File

@@ -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");