[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/multiplex ...

Tom Elrod tom.elrod at jboss.com
Fri Aug 18 09:50:14 EDT 2006


  User: telrod  
  Date: 06/08/18 09:50:14

  Modified:    src/main/org/jboss/remoting/transport/multiplex 
                        InputMultiplexor.java
  Log:
  JBREM-582 - removing calls to System.out.println and printStackTrace in core remoting code.
  
  Revision  Changes    Path
  1.26      +116 -118  JBossRemoting/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InputMultiplexor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- InputMultiplexor.java	22 Jul 2006 07:30:50 -0000	1.25
  +++ InputMultiplexor.java	18 Aug 2006 13:50:14 -0000	1.26
  @@ -22,6 +22,9 @@
   
   package org.jboss.remoting.transport.multiplex;
   
  +import org.jboss.logging.Logger;
  +import org.jboss.remoting.transport.multiplex.utility.StoppableThread;
  +
   import java.io.BufferedInputStream;
   import java.io.EOFException;
   import java.io.IOException;
  @@ -41,9 +44,6 @@
   import java.util.Map;
   import java.util.Set;
   
  -import org.jboss.logging.Logger;
  -import org.jboss.remoting.transport.multiplex.utility.StoppableThread;
  -
   /**
    * <code>InputMultiplexor</code> is one of the key Multiplex classes, responsible for
    * demultiplexing multiple byte streams sharing a single TCP connection.  It has two
  @@ -224,7 +224,6 @@
            catch (IOException e)
            {
               log.error("unable to close selector", e);
  -            e.printStackTrace();
            }
            interrupt();
         }
  @@ -441,7 +440,6 @@
                       key.cancel();
                       log.error(e);
                       log.error("error count exceeds max errors: " + errorCount);
  -                    e.printStackTrace();
                       return;
                    }
                  
  
  
  



More information about the jboss-cvs-commits mailing list