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

Manik Surtani msurtani at jboss.com
Fri Jan 19 05:50:42 EST 2007


  User: msurtani
  Date: 07/01/19 05:50:42

  Modified:    src/org/jboss/cache/interceptors 
                        OptimisticNodeInterceptor.java
  Log:
  API Changes
  
  Revision  Changes    Path
  1.51      +2 -2      JBossCache/src/org/jboss/cache/interceptors/OptimisticNodeInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: OptimisticNodeInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/OptimisticNodeInterceptor.java,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -b -r1.50 -r1.51
  --- OptimisticNodeInterceptor.java	18 Jan 2007 16:42:15 -0000	1.50
  +++ OptimisticNodeInterceptor.java	19 Jan 2007 10:50:42 -0000	1.51
  @@ -264,7 +264,7 @@
      {
         Fqn newFqn = new Fqn(newBase, node.getFqn().getLastElement());
         WorkspaceNode movedNode = getOrCreateWorkspaceNode(newFqn, ws, true);
  -      movedNode.put(node.getData());
  +      movedNode.putAll(node.getData());
   
         // process children
         for (Object n : node.getChildrenNames())
  @@ -305,7 +305,7 @@
            return;
         }
         if (eraseExisitng) workspaceNode.clearData();
  -      workspaceNode.put(data);
  +      workspaceNode.putAll(data);
         workspace.addNode(workspaceNode);
      }
   
  
  
  



More information about the jboss-cvs-commits mailing list