Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-10-02 17:47:10 +0000
committerJoakim Erdfelt2015-10-02 17:47:10 +0000
commit6aae1265bd71c87c671061d9c70a25fd5056d18d (patch)
treedac4e3c4ff102a9c7bb68e4b30a35727af61fe91 /jetty-websocket/websocket-common
parent64d5718e9e3d93435181ea9c154e0a9a539a2c2c (diff)
downloadorg.eclipse.jetty.project-6aae1265bd71c87c671061d9c70a25fd5056d18d.tar.gz
org.eclipse.jetty.project-6aae1265bd71c87c671061d9c70a25fd5056d18d.tar.xz
org.eclipse.jetty.project-6aae1265bd71c87c671061d9c70a25fd5056d18d.zip
Removing redudant close reason trim (handled elsewhere now)
Diffstat (limited to 'jetty-websocket/websocket-common')
-rw-r--r--jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java
index 5dd82f2bd4..7e4bb330c4 100644
--- a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java
+++ b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java
@@ -115,7 +115,7 @@ public class WebSocketSession extends ContainerLifeCycle implements Session, Web
@Override
public void close(int statusCode, String reason)
{
- connection.close(statusCode,CloseStatus.trimMaxReasonLength(reason));
+ connection.close(statusCode,reason);
}
/**

Back to the top