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

Manik Surtani msurtani at jboss.com
Thu Aug 17 17:57:58 EDT 2006


  User: msurtani
  Date: 06/08/17 17:57:58

  Modified:    src/org/jboss/cache/factories   DefaultCacheFactory.java
                        InterceptorChainFactory.java
  Log:
  Habanero stabilisation efforts - getCacheSPI() method
  
  Revision  Changes    Path
  1.7       +1 -1      JBossCache/src/org/jboss/cache/factories/DefaultCacheFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DefaultCacheFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/factories/DefaultCacheFactory.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- DefaultCacheFactory.java	20 Jul 2006 04:49:52 -0000	1.6
  +++ DefaultCacheFactory.java	17 Aug 2006 21:57:58 -0000	1.7
  @@ -42,7 +42,7 @@
               TreeCache cache = new TreeCache();
               cache.setConfiguration(configuration);
               if (start) cache.startService();
  -            return cache.getSPI();
  +            return cache.getCacheSPI();
           }
           catch (Exception e)
           {
  
  
  
  1.25      +1 -1      JBossCache/src/org/jboss/cache/factories/InterceptorChainFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InterceptorChainFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/factories/InterceptorChainFactory.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -b -r1.24 -r1.25
  --- InterceptorChainFactory.java	16 Aug 2006 17:11:39 -0000	1.24
  +++ InterceptorChainFactory.java	17 Aug 2006 21:57:58 -0000	1.25
  @@ -42,7 +42,7 @@
      {
         Class clazz = loadClass(classname);
         Interceptor i = (Interceptor) clazz.newInstance();
  -      i.setCache(cache.getSPI());
  +      i.setCache(cache.getCacheSPI());
         return i;
      }
   
  
  
  



More information about the jboss-cvs-commits mailing list