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

Manik Surtani manik at jboss.org
Thu Jul 12 12:35:19 EDT 2007


  User: msurtani
  Date: 07/07/12 12:35:19

  Modified:    src/org/jboss/cache/interceptors 
                        CacheLoaderInterceptor.java
  Log:
  JBCACHE-1133
  
  Revision  Changes    Path
  1.88      +8 -5      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.87
  retrieving revision 1.88
  diff -u -b -r1.87 -r1.88
  --- CacheLoaderInterceptor.java	12 Jul 2007 14:29:05 -0000	1.87
  +++ CacheLoaderInterceptor.java	12 Jul 2007 16:35:19 -0000	1.88
  @@ -25,7 +25,7 @@
    * 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.87 2007/07/12 14:29:05 msurtani Exp $
  + * @version $Id: CacheLoaderInterceptor.java,v 1.88 2007/07/12 16:35:19 msurtani Exp $
    */
   public class CacheLoaderInterceptor extends Interceptor implements CacheLoaderInterceptorMBean
   {
  @@ -257,10 +257,13 @@
               child.putAllDirect(loader.get(child.getFqn()));
               child.setDataLoaded(true);
            }
  -         else
  -         {
  -            child.setDataLoaded(false);
  -         }
  +
  +         // why are we doing this?!??
  +//         else
  +//         {
  +//            child.setDataLoaded(false);
  +//         }
  +
            if (recursive)
            {
               loadChildren(child.getFqn(), child, true, isMove);
  
  
  



More information about the jboss-cvs-commits mailing list