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

Ovidiu Feodorov ovidiu.feodorov at jboss.com
Sun Jan 21 06:24:13 EST 2007


  User: ovidiu  
  Date: 07/01/21 06:24:13

  Modified:    src/main/org/jboss/remoting  Tag: remoting_2_x
                        ConnectionValidator.java
  Log:
  minor reformatting
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.13.2.8  +6 -2      JBossRemoting/src/main/org/jboss/remoting/ConnectionValidator.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConnectionValidator.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/ConnectionValidator.java,v
  retrieving revision 1.13.2.7
  retrieving revision 1.13.2.8
  diff -u -b -r1.13.2.7 -r1.13.2.8
  --- ConnectionValidator.java	21 Jan 2007 01:24:51 -0000	1.13.2.7
  +++ ConnectionValidator.java	21 Jan 2007 11:24:13 -0000	1.13.2.8
  @@ -113,7 +113,9 @@
      public void stop()
      {
         if (stopped)
  +      {
            return;
  +      }
         
         doStop();
      }
  @@ -140,8 +142,10 @@
         }
         
         TimerUtil.unschedule(this);
  -      log.debug(this + " stopped");
  -      return super.cancel();
  +
  +      boolean result = super.cancel();
  +      log.debug(this + " stopped, returning " + result);
  +      return result;
      }
   
   
  
  
  



More information about the jboss-cvs-commits mailing list