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

Tom Elrod tom.elrod at jboss.com
Thu Jan 18 16:47:39 EST 2007


  User: telrod  
  Date: 07/01/18 16:47:39

  Modified:    src/main/org/jboss/remoting  LeasePinger.java
  Log:
  JBREM-673 - fixed places where java.util.Timer created as non daemon and should be.
  
  Revision  Changes    Path
  1.11      +2 -3      JBossRemoting/src/main/org/jboss/remoting/LeasePinger.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LeasePinger.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/LeasePinger.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- LeasePinger.java	11 Jan 2007 01:21:02 -0000	1.10
  +++ LeasePinger.java	18 Jan 2007 21:47:39 -0000	1.11
  @@ -3,7 +3,6 @@
   import EDU.oswego.cs.dl.util.concurrent.ConcurrentHashMap;
   import org.jboss.logging.Logger;
   import org.jboss.remoting.transport.ClientInvoker;
  -import org.jboss.remoting.util.TimerUtil;
   
   import java.util.Collection;
   import java.util.HashMap;
  @@ -19,7 +18,7 @@
    */
   public class LeasePinger
   {
  -   private static Timer timer = new Timer();
  +   private static Timer timer = new Timer(true);
      
      private ClientInvoker client = null;
      private long pingPeriod = -1;
  
  
  



More information about the jboss-cvs-commits mailing list