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

Jason Thomas Greene jgreene at jboss.com
Tue Feb 27 10:57:17 EST 2007


  User: jgreene 
  Date: 07/02/27 10:57:17

  Modified:    src/org/jboss/cache/aop  Tag: Branch_JBossCache_1_4_0
                        InternalDelegate.java
  Log:
  Fix JBCACHE-988
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.38.2.3  +2 -1      JBossCache/src/org/jboss/cache/aop/Attic/InternalDelegate.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InternalDelegate.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/aop/Attic/InternalDelegate.java,v
  retrieving revision 1.38.2.2
  retrieving revision 1.38.2.3
  diff -u -b -r1.38.2.2 -r1.38.2.3
  --- InternalDelegate.java	25 Oct 2006 14:12:59 -0000	1.38.2.2
  +++ InternalDelegate.java	27 Feb 2007 15:57:17 -0000	1.38.2.3
  @@ -314,7 +314,8 @@
         // We can't do a brute force remove anymore?
         if(!evict)
         {
  -         if( !cache_._get(fqn).hasChildren() )
  +         Map children = cache_._get(fqn).getChildren();
  +         if (children == null || children.size() == 0)
            {
               // remove everything
               cache_.remove(fqn);
  
  
  



More information about the jboss-cvs-commits mailing list