Thanx Mark, Peter Am 07.04.2012 um 01:40 schrieb [email protected]:
> 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: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
