From df7a41276f13b34471e905de3ca9e192710908db Mon Sep 17 00:00:00 2001 From: Alexander Farber Date: Mon, 30 May 2016 18:40:53 +0200 Subject: [PATCH] Remove Session.setMaximumMessageSize(long) example, because that method has been removed in jetty-9.1 Signed-off-by: Alexander Farber --- .../websockets/jetty/jetty-websocket-api-session.adoc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/jetty-documentation/src/main/asciidoc/development/websockets/jetty/jetty-websocket-api-session.adoc b/jetty-documentation/src/main/asciidoc/development/websockets/jetty/jetty-websocket-api-session.adoc index 1dc9230d2e7..1d0113bdff0 100644 --- a/jetty-documentation/src/main/asciidoc/development/websockets/jetty/jetty-websocket-api-session.adoc +++ b/jetty-documentation/src/main/asciidoc/development/websockets/jetty/jetty-websocket-api-session.adoc @@ -61,10 +61,3 @@ Get and Set the Idle Timeout ---- session.setIdleTimeout(2000); // 2 second timeout ---- - -Get and Set the Maximum Message Size - -[source,java] ----- -session.setMaximumMessageSize(64*1024); // accept messages up to 64k, fail if larger -----