[jboss-cvs] JBossCache/src/org/jboss/cache ...

Manik Surtani msurtani at jboss.com
Thu Oct 19 09:29:57 EDT 2006


  User: msurtani
  Date: 06/10/19 09:29:57

  Modified:    src/org/jboss/cache  TreeCache.java
  Log:
  JBCACHE-790
  
  Revision  Changes    Path
  1.254     +4 -3      JBossCache/src/org/jboss/cache/TreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/TreeCache.java,v
  retrieving revision 1.253
  retrieving revision 1.254
  diff -u -b -r1.253 -r1.254
  --- TreeCache.java	18 Oct 2006 11:07:54 -0000	1.253
  +++ TreeCache.java	19 Oct 2006 13:29:57 -0000	1.254
  @@ -91,7 +91,7 @@
    * @author <a href="mailto:manik at jboss.org">Manik Surtani (manik at jboss.org)</a>
    * @author Brian Stansberry
    * @author Daniel Huang (dhuang at jboss.org)
  - * @version $Id: TreeCache.java,v 1.253 2006/10/18 11:07:54 msurtani Exp $
  + * @version $Id: TreeCache.java,v 1.254 2006/10/19 13:29:57 msurtani Exp $
    *          <p/>
    * @see <a href="http://labs.jboss.com/portal/jbosscache/docs">JBossCache doc</a>
    */
  @@ -294,6 +294,7 @@
       */
      public TreeCache(Configuration configuration) throws Exception
      {
  +      notifier = new Notifier(this);
         this.configuration = configuration;
      }
   
  @@ -302,6 +303,7 @@
       */
      public TreeCache() throws Exception
      {
  +      notifier = new Notifier(this);
      }
   
      /**
  @@ -309,6 +311,7 @@
       */
      public TreeCache(JChannel channel) throws Exception
      {
  +      notifier = new Notifier(this);
         this.channel = channel;
      }
   
  @@ -580,8 +583,6 @@
            rootSpi = new TreeCacheProxyImpl(this, (NodeImpl) root);
         }
   
  -      notifier = new Notifier(getCacheSPI());
  -
         setUseReplQueue(configuration.isUseReplQueue());
         setIsolationLevel(configuration.getIsolationLevel());
         if (this.tm_lookup == null && configuration.getTransactionManagerLookupClass() != null)
  
  
  



More information about the jboss-cvs-commits mailing list