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

Brian Stansberry brian.stansberry at jboss.com
Thu Jan 4 18:52:06 EST 2007


  User: bstansberry
  Date: 07/01/04 18:52:06

  Modified:    src/org/jboss/cache/interceptors 
                        CacheLoaderInterceptor.java
  Log:
  Disable outdated JBCACHE-118 warning
  
  Revision  Changes    Path
  1.70      +8 -6      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.69
  retrieving revision 1.70
  diff -u -b -r1.69 -r1.70
  --- CacheLoaderInterceptor.java	4 Jan 2007 05:35:37 -0000	1.69
  +++ CacheLoaderInterceptor.java	4 Jan 2007 23:52:06 -0000	1.70
  @@ -28,7 +28,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.69 2007/01/04 05:35:37 msurtani Exp $
  + * @version $Id: CacheLoaderInterceptor.java,v 1.70 2007/01/04 23:52:06 bstansberry Exp $
    */
   public class CacheLoaderInterceptor extends BaseCacheLoaderInterceptor implements CacheLoaderInterceptorMBean
   {
  @@ -547,10 +547,12 @@
            }
         }
   
  -      if (!nodeExists && isCustomCacheLoader)
  -      {
  -         warnCustom();
  -      }
  +      // BES Jan-4-2007 Stop doing this; it's annoying and people
  +      // should have converted by now
  +//      if (!nodeExists && isCustomCacheLoader)
  +//      {
  +//         warnCustom();
  +//      }
   
         if (nodeExists)
         {
  
  
  



More information about the jboss-cvs-commits mailing list