You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2014/06/02 21:58:41 UTC

svn commit: r1599336 - /tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.java

Author: markt
Date: Mon Jun  2 19:58:40 2014
New Revision: 1599336

URL: http://svn.apache.org/r1599336
Log:
Fix IDE warning

Modified:
    tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.java

Modified: tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.java?rev=1599336&r1=1599335&r2=1599336&view=diff
==============================================================================
--- tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.java (original)
+++ tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.java Mon Jun  2 19:58:40 2014
@@ -39,8 +39,7 @@ public class EchoAsyncAnnotation {
     ByteArrayOutputStream bytes = null;
 
     @OnMessage
-    public void echoTextMessage(Session session, String msg, boolean last)
-            throws IOException {
+    public void echoTextMessage(Session session, String msg, boolean last) {
         if (sb == null) {
             sb = new StringBuilder();
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org