Author: fhanik
Date: Mon Feb 27 15:09:12 2006
New Revision: 381480

URL: http://svn.apache.org/viewcvs?rev=381480&view=rev
Log:
removed debug statement

Modified:
    
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tcp/TcpReplicationThread.java

Modified: 
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tcp/TcpReplicationThread.java
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tcp/TcpReplicationThread.java?rev=381480&r1=381479&r2=381480&view=diff
==============================================================================
--- 
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tcp/TcpReplicationThread.java
 (original)
+++ 
tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tcp/TcpReplicationThread.java
 Mon Feb 27 15:09:12 2006
@@ -54,10 +54,8 @@
     public synchronized void run()
     {
         if ( (getOptions() & OPTION_DIRECT_BUFFER) == OPTION_DIRECT_BUFFER ) {
-            System.out.println("Creating a direct buffer");
             buffer = 
ByteBuffer.allocateDirect(ReplicationListener.BUFFER_RECEIVE_SIZE);
         }else {
-            System.out.println("Creating a regular buffer");
             buffer = ByteBuffer.allocate 
(ReplicationListener.BUFFER_RECEIVE_SIZE);
         }
         while (doRun) {



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to