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

Manik Surtani msurtani at jboss.com
Fri Sep 22 13:04:50 EDT 2006


  User: msurtani
  Date: 06/09/22 13:04:50

  Modified:    src/org/jboss/cache  TreeCacheProxyImpl.java
  Log:
  Fixed move-related issues
  
  Revision  Changes    Path
  1.38      +1 -2      JBossCache/src/org/jboss/cache/TreeCacheProxyImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCacheProxyImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/TreeCacheProxyImpl.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -b -r1.37 -r1.38
  --- TreeCacheProxyImpl.java	22 Sep 2006 08:49:00 -0000	1.37
  +++ TreeCacheProxyImpl.java	22 Sep 2006 17:04:49 -0000	1.38
  @@ -561,8 +561,7 @@
   
         final TreeCacheProxyImpl that = (TreeCacheProxyImpl) o;
   
  -      if (currentNode != null ? !currentNode.equals(that.currentNode) : that.currentNode != null) return false;
  -      if (log != null ? !log.equals(that.log) : that.log != null) return false;
  +      if (currentNode != null ? !currentNode.fqn.equals(that.currentNode.fqn) : that.currentNode != null) return false;
         if (treeCache != null ? !treeCache.equals(that.treeCache) : that.treeCache != null) return false;
   
         return true;
  
  
  



More information about the jboss-cvs-commits mailing list