[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/socket ...
Tom Elrod
tom.elrod at jboss.com
Thu Nov 9 15:33:59 EST 2006
User: telrod
Date: 06/11/09 15:33:59
Modified: src/main/org/jboss/remoting/transport/socket Tag:
remoting_2_x ClientSocketWrapper.java
ServerSocketWrapper.java
Log:
JBREM-622 - fixed problem with having same callback handler registered multiple times.
Revision Changes Path
No revision
No revision
1.15.10.2 +0 -1 JBossRemoting/src/main/org/jboss/remoting/transport/socket/ClientSocketWrapper.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ClientSocketWrapper.java
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/socket/ClientSocketWrapper.java,v
retrieving revision 1.15.10.1
retrieving revision 1.15.10.2
diff -u -b -r1.15.10.1 -r1.15.10.2
--- ClientSocketWrapper.java 31 Oct 2006 04:21:07 -0000 1.15.10.1
+++ ClientSocketWrapper.java 9 Nov 2006 20:33:59 -0000 1.15.10.2
@@ -106,7 +106,6 @@
public void checkConnection() throws IOException
{
- System.out.println(this + " checkConnectionCalled()");
// Test to see if socket is alive by send ACK message
final byte ACK = 1;
1.14.6.2 +0 -2 JBossRemoting/src/main/org/jboss/remoting/transport/socket/ServerSocketWrapper.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ServerSocketWrapper.java
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/socket/ServerSocketWrapper.java,v
retrieving revision 1.14.6.1
retrieving revision 1.14.6.2
diff -u -b -r1.14.6.1 -r1.14.6.2
--- ServerSocketWrapper.java 31 Oct 2006 04:21:07 -0000 1.14.6.1
+++ ServerSocketWrapper.java 9 Nov 2006 20:33:59 -0000 1.14.6.2
@@ -72,8 +72,6 @@
public void checkConnection() throws IOException
{
- System.out.println(this + " checkConnectionCalled()");
-
// Perform acknowledgement to convince client
// that the socket is still active
int ACK = 0;
More information about the jboss-cvs-commits
mailing list