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

Manik Surtani msurtani at jboss.com
Thu Jul 20 05:03:51 EDT 2006


  User: msurtani
  Date: 06/07/20 05:03:51

  Modified:    src/org/jboss/cache/factories  InterceptorChainFactory.java
  Log:
  Fixed some broken UTs to use the new xml parsers, cache factories, etc.
  
  Revision  Changes    Path
  1.21      +2 -2      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.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- InterceptorChainFactory.java	19 Jul 2006 21:34:43 -0000	1.20
  +++ InterceptorChainFactory.java	20 Jul 2006 09:03:51 -0000	1.21
  @@ -155,7 +155,7 @@
   
         txInterceptor = createInterceptor("org.jboss.cache.interceptors.TxInterceptor", cache);
   
  -      switch (cache.getConfiguration().getCacheModeInt())
  +      switch (cache.getConfiguration().getCacheMode())
         {
            case REPL_SYNC:
            case REPL_ASYNC:
  @@ -348,7 +348,7 @@
   //      if (cache.getBuddyManager() != null && cache.getBuddyManager().isEnableDataGravitation()) dataGravitatorInterceptor = createInterceptor("org.jboss.cache.interceptors.DataGravitatorInterceptor", cache);
         if (cache.getBuddyManager() != null) dataGravitatorInterceptor = createInterceptor("org.jboss.cache.interceptors.DataGravitatorInterceptor", cache);
         
  -      switch (cache.getConfiguration().getCacheModeInt())
  +      switch (cache.getConfiguration().getCacheMode())
         {
            case REPL_SYNC:
            case REPL_ASYNC:
  
  
  



More information about the jboss-cvs-commits mailing list