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

Manik Surtani manik at jboss.org
Tue Jul 3 07:57:48 EDT 2007


  User: msurtani
  Date: 07/07/03 07:57:48

  Modified:    src/org/jboss/cache  CacheImpl.java
  Log:
  listener based fixes
  
  Revision  Changes    Path
  1.99      +4 -4      JBossCache/src/org/jboss/cache/CacheImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/CacheImpl.java,v
  retrieving revision 1.98
  retrieving revision 1.99
  diff -u -b -r1.98 -r1.99
  --- CacheImpl.java	2 Jul 2007 22:20:04 -0000	1.98
  +++ CacheImpl.java	3 Jul 2007 11:57:48 -0000	1.99
  @@ -216,7 +216,7 @@
      /**
       * Cache notifier handler class.
       */
  -   private Notifier<K, V> notifier;
  +   private Notifier notifier;
   
      private ThreadLocal<InvocationContext> invocationContextContainer = new ThreadLocal<InvocationContext>()
      {
  @@ -235,7 +235,7 @@
      protected CacheImpl() throws Exception
      {
         configuration = new Configuration(this);
  -      notifier = new Notifier<K, V>(this);
  +      notifier = new Notifier(this);
         regionManager = new RegionManager(this);
         cacheStatus = CacheStatus.INSTANTIATED;
      }
  @@ -584,7 +584,7 @@
         }
   
         if (notifier == null)
  -         notifier = new Notifier<K, V>(this);
  +         notifier = new Notifier(this);
   
         // create a new root temporarily.
         NodeSPI<K, V> tempRoot = nf.createRootDataNode();
  @@ -3180,7 +3180,7 @@
      /**
       * @return an instance of {@link Notifier} which has been configured with this instance of CacheImpl.
       */
  -   public Notifier<K, V> getNotifier()
  +   public Notifier getNotifier()
      {
         return notifier;
      }
  
  
  



More information about the jboss-cvs-commits mailing list