Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 953289F87 for ; Fri, 6 Apr 2012 23:41:22 +0000 (UTC) Received: (qmail 91753 invoked by uid 500); 6 Apr 2012 23:41:21 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 91655 invoked by uid 500); 6 Apr 2012 23:41:21 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 91604 invoked by uid 99); 6 Apr 2012 23:41:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Apr 2012 23:41:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Apr 2012 23:41:18 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C2187238899C for ; Fri, 6 Apr 2012 23:40:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1310640 - /tomcat/trunk/test/org/apache/catalina/websocket/TestWebSocket.java Date: Fri, 06 Apr 2012 23:40:57 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120406234057.C2187238899C@eris.apache.org> Author: markt Date: Fri Apr 6 23:40:57 2012 New Revision: 1310640 URL: http://svn.apache.org/viewvc?rev=1310640&view=rev Log: Fix typo Modified: tomcat/trunk/test/org/apache/catalina/websocket/TestWebSocket.java Modified: tomcat/trunk/test/org/apache/catalina/websocket/TestWebSocket.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/websocket/TestWebSocket.java?rev=1310640&r1=1310639&r2=1310640&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/catalina/websocket/TestWebSocket.java (original) +++ tomcat/trunk/test/org/apache/catalina/websocket/TestWebSocket.java Fri Apr 6 23:40:57 2012 @@ -65,7 +65,7 @@ public class TestWebSocket extends Tomca tomcat.start(); - WebSocketCLient client= new WebSocketCLient(); + WebSocketClient client= new WebSocketClient(); // Send the WebSocket handshake @@ -105,7 +105,7 @@ public class TestWebSocket extends Tomca tomcat.addWebapp(null, "/examples", appDir.getAbsolutePath()); tomcat.start(); - WebSocketCLient client= new WebSocketCLient(); + WebSocketClient client= new WebSocketClient(); // Send the WebSocket handshake client.writer.write("GET /examples/websocket/echoStream HTTP/1.1" + CRLF); @@ -142,7 +142,7 @@ public class TestWebSocket extends Tomca tomcat.addWebapp(null, "/examples", appDir.getAbsolutePath()); tomcat.start(); - WebSocketCLient client= new WebSocketCLient(); + WebSocketClient client= new WebSocketClient(); // Send the WebSocket handshake @@ -170,7 +170,7 @@ public class TestWebSocket extends Tomca tomcat.addWebapp(null, "/examples", appDir.getAbsolutePath()); tomcat.start(); - WebSocketCLient client= new WebSocketCLient(); + WebSocketClient client= new WebSocketClient(); // Send the WebSocket handshake client.writer.write("GET /examples/websocket/echoStream HTTP/1.1" + CRLF); @@ -196,7 +196,7 @@ public class TestWebSocket extends Tomca tomcat.addWebapp(null, "/examples", appDir.getAbsolutePath()); tomcat.start(); - WebSocketCLient client= new WebSocketCLient(); + WebSocketClient client= new WebSocketClient(); // Send the WebSocket handshake client.writer.write("GET /examples/websocket/echoStream HTTP/1.1" + CRLF); @@ -304,7 +304,7 @@ public class TestWebSocket extends Tomca return cc.toString(); } - private class WebSocketCLient + private class WebSocketClient { // Open the socket final String encoding = "ISO-8859-1"; @@ -312,7 +312,7 @@ public class TestWebSocket extends Tomca Writer writer ; BufferedReader reader; - private WebSocketCLient() { + private WebSocketClient() { SocketAddress addr = new InetSocketAddress("localhost", getPort()); socket = new Socket(); try { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org