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

Jimmy Wilson jawilson at redhat.com
Sun Jun 24 16:53:14 EDT 2007


  User: jawilson
  Date: 07/06/24 16:53:14

  Modified:    src/org/jboss/cache/interceptors   Tag:
                        Branch_JBossCache_1_4_0 CacheStoreInterceptor.java
                        CacheLoaderInterceptor.java
  Log:
  Fix for [JBCACHE-1103] (backport).  CacheLoaderInterceptor and CacheStoreInterceptor now correclty subclass Interceptor.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.26.2.2  +2 -2      JBossCache/src/org/jboss/cache/interceptors/CacheStoreInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheStoreInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/CacheStoreInterceptor.java,v
  retrieving revision 1.26.2.1
  retrieving revision 1.26.2.2
  diff -u -b -r1.26.2.1 -r1.26.2.2
  --- CacheStoreInterceptor.java	24 Jun 2007 20:06:26 -0000	1.26.2.1
  +++ CacheStoreInterceptor.java	24 Jun 2007 20:53:14 -0000	1.26.2.2
  @@ -25,9 +25,9 @@
    * Writes modifications back to the store on the way out: stores modifications back
    * through the CacheLoader, either after each method call (no TXs), or at TX commit.
    * @author Bela Ban
  - * @version $Id: CacheStoreInterceptor.java,v 1.26.2.1 2007/06/24 20:06:26 jawilson Exp $
  + * @version $Id: CacheStoreInterceptor.java,v 1.26.2.2 2007/06/24 20:53:14 jawilson Exp $
    */
  -public class CacheStoreInterceptor extends CacheLoaderInterceptor implements CacheStoreInterceptorMBean
  +public class CacheStoreInterceptor extends Interceptor implements CacheStoreInterceptorMBean
   {
   
      protected CacheLoaderConfig loaderConfig = null;
  
  
  
  1.40.2.4  +2 -2      JBossCache/src/org/jboss/cache/interceptors/CacheLoaderInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheLoaderInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/CacheLoaderInterceptor.java,v
  retrieving revision 1.40.2.3
  retrieving revision 1.40.2.4
  diff -u -b -r1.40.2.3 -r1.40.2.4
  --- CacheLoaderInterceptor.java	24 Jun 2007 20:06:26 -0000	1.40.2.3
  +++ CacheLoaderInterceptor.java	24 Jun 2007 20:53:14 -0000	1.40.2.4
  @@ -29,9 +29,9 @@
    * Loads nodes that don't exist at the time of the call into memory from the CacheLoader
    *
    * @author Bela Ban
  - * @version $Id: CacheLoaderInterceptor.java,v 1.40.2.3 2007/06/24 20:06:26 jawilson Exp $
  + * @version $Id: CacheLoaderInterceptor.java,v 1.40.2.4 2007/06/24 20:53:14 jawilson Exp $
    */
  -public class CacheLoaderInterceptor extends CacheLoaderInterceptor implements CacheLoaderInterceptorMBean
  +public class CacheLoaderInterceptor extends Interceptor implements CacheLoaderInterceptorMBean
   {
      private boolean isCustomCacheLoader;
      private long m_cacheLoads = 0;
  
  
  



More information about the jboss-cvs-commits mailing list