[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection ...

Ron Sigal ron_sigal at yahoo.com
Wed Nov 8 21:56:43 EST 2006


  User: rsigal  
  Date: 06/11/08 21:56:43

  Modified:    src/tests/org/jboss/test/remoting/transport/socket/connection    
                        Tag: remoting_2_x
                        SocketConnectionCheckTestServer.java
                        SocketConnectionCheckTestClient.java
                        SocketTestServer.java SocketTestClient.java
  Log:
  JBREM-631:  Commented out System.out.println() calls in main loops.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.2   +2 -2      JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketConnectionCheckTestServer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SocketConnectionCheckTestServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketConnectionCheckTestServer.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -b -r1.1.2.1 -r1.1.2.2
  --- SocketConnectionCheckTestServer.java	31 Oct 2006 04:21:07 -0000	1.1.2.1
  +++ SocketConnectionCheckTestServer.java	9 Nov 2006 02:56:43 -0000	1.1.2.2
  @@ -110,9 +110,9 @@
         public Object invoke(InvocationRequest invocation) throws Throwable
         {
            // Print out the invocation request
  -         System.out.println("Invocation request is: " + invocation.getParameter());
  +//         System.out.println("Invocation request is: " + invocation.getParameter());
            Integer resp = new Integer(++SocketConnectionCheckTestServer.callCounter);
  -         System.out.println("Returning response of: " + resp);
  +//         System.out.println("Returning response of: " + resp);
            // Just going to return static string as this is just simple example code.
            return resp;
         }
  
  
  
  1.1.2.2   +1 -1      JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketConnectionCheckTestClient.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SocketConnectionCheckTestClient.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketConnectionCheckTestClient.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -b -r1.1.2.1 -r1.1.2.2
  --- SocketConnectionCheckTestClient.java	31 Oct 2006 04:21:07 -0000	1.1.2.1
  +++ SocketConnectionCheckTestClient.java	9 Nov 2006 02:56:43 -0000	1.1.2.2
  @@ -42,7 +42,7 @@
            for(int x = 0; x < numOfCalls; x++)
            {
               response = remotingClient.invoke(request);
  -            System.out.println("Invocation response: " + response);
  +//            System.out.println("Invocation response: " + response);
            }
   
            long endTime = System.currentTimeMillis();
  
  
  
  1.3.4.2   +2 -2      JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketTestServer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SocketTestServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketTestServer.java,v
  retrieving revision 1.3.4.1
  retrieving revision 1.3.4.2
  diff -u -b -r1.3.4.1 -r1.3.4.2
  --- SocketTestServer.java	31 Oct 2006 04:21:07 -0000	1.3.4.1
  +++ SocketTestServer.java	9 Nov 2006 02:56:43 -0000	1.3.4.2
  @@ -137,9 +137,9 @@
         public Object invoke(InvocationRequest invocation) throws Throwable
         {
            // Print out the invocation request
  -         System.out.println("Invocation request is: " + invocation.getParameter());
  +//         System.out.println("Invocation request is: " + invocation.getParameter());
            Integer resp = new Integer(++callCounter);
  -         System.out.println("Returning response of: " + resp);
  +//         System.out.println("Returning response of: " + resp);
            // Just going to return static string as this is just simple example code.
            return resp;
         }
  
  
  
  1.4.4.2   +1 -1      JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketTestClient.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SocketTestClient.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/connection/SocketTestClient.java,v
  retrieving revision 1.4.4.1
  retrieving revision 1.4.4.2
  diff -u -b -r1.4.4.1 -r1.4.4.2
  --- SocketTestClient.java	31 Oct 2006 04:21:07 -0000	1.4.4.1
  +++ SocketTestClient.java	9 Nov 2006 02:56:43 -0000	1.4.4.2
  @@ -72,7 +72,7 @@
            for(int x = 0; x < numOfCalls; x++)
            {
               response = remotingClient.invoke(request);
  -            System.out.println("Invocation response: " + response);
  +//            System.out.println("Invocation response: " + response);
            }
   
            long endTime = System.currentTimeMillis();
  
  
  



More information about the jboss-cvs-commits mailing list