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

Ron Sigal ron_sigal at yahoo.com
Sun Mar 11 16:52:15 EDT 2007


  User: rsigal  
  Date: 07/03/11 16:52:15

  Modified:    src/main/org/jboss/remoting/transport/socket 
                        SocketWrapper.java
  Log:
  JBREM-690:  Changed value of CLOSING from 3 to 254.
  
  Revision  Changes    Path
  1.10      +3 -3      JBossRemoting/src/main/org/jboss/remoting/transport/socket/SocketWrapper.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SocketWrapper.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/socket/SocketWrapper.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- SocketWrapper.java	3 Feb 2007 05:21:32 -0000	1.9
  +++ SocketWrapper.java	11 Mar 2007 20:52:15 -0000	1.10
  @@ -43,7 +43,7 @@
      public static final String UNMARSHALLER = "unmarshaller";
      public static final String TEMP_TIMEOUT = "temptimeout";
      
  -   protected static final int CLOSING = 3;
  +   protected static final int CLOSING = 254;
      
      // Static ---------------------------------------------------------------------------------------
   
  @@ -58,13 +58,13 @@
   
      protected SocketWrapper(Socket socket)
      {
  -      if (trace) { log.trace("creating " + getClass().getName() + " instance for " + socket); }
  +      if (trace) { log.trace("constructing " + getClass().getName() + " instance for " + socket); }
         this.socket = socket;
      }
   
      protected SocketWrapper(Socket socket, Integer timeoutInt) throws SocketException
      {
  -      if (trace) { log.trace("creating " + getClass().getName() + " instance for " + socket + ", using timeout " + timeoutInt); }
  +      if (trace) { log.trace("constructing " + getClass().getName() + " instance for " + socket + ", using timeout " + timeoutInt); }
         this.socket = socket;
   
         if(timeoutInt != null)
  
  
  



More information about the jboss-cvs-commits mailing list