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

Jason Thomas Greene jgreene at jboss.com
Tue Aug 7 20:38:33 EDT 2007


  User: jgreene 
  Date: 07/08/07 20:38:33

  Modified:    src/org/jboss/cache  CacheImpl.java
  Log:
  Fix JBCACHE-1162 (Node.clearData() does not rollback correctly)
  
  Revision  Changes    Path
  1.111     +1 -1      JBossCache/src/org/jboss/cache/CacheImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/CacheImpl.java,v
  retrieving revision 1.110
  retrieving revision 1.111
  diff -u -b -r1.110 -r1.111
  --- CacheImpl.java	1 Aug 2007 11:41:56 -0000	1.110
  +++ CacheImpl.java	8 Aug 2007 00:38:33 -0000	1.111
  @@ -2668,7 +2668,7 @@
            if (!data.isEmpty())
            {
               undo_op = MethodCallFactory.create(MethodDeclarations.putDataMethodLocal,
  -                                               tx, fqn, data, false);
  +                                               tx, fqn, new HashMap<K,V>(data), false);
            }
         }
   
  
  
  



More information about the jboss-cvs-commits mailing list