[jboss-cvs] JBossCache/migration/examples/cacheloader-migration/src/examples ...

Galder Zamarreno galder.zamarreno at jboss.com
Thu Apr 19 15:17:08 EDT 2007


  User: gzamarreno
  Date: 07/04/19 15:17:08

  Modified:    migration/examples/cacheloader-migration/src/examples 
                        TransformStore.java
  Log:
  [JBCACHE-964] cache loader migration example now works in linux as well
  
  Revision  Changes    Path
  1.2       +2 -2      JBossCache/migration/examples/cacheloader-migration/src/examples/TransformStore.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TransformStore.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/migration/examples/cacheloader-migration/src/examples/TransformStore.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- TransformStore.java	7 Mar 2007 23:32:06 -0000	1.1
  +++ TransformStore.java	19 Apr 2007 19:17:08 -0000	1.2
  @@ -59,7 +59,7 @@
         log.info("Cache store transformed to 2.x format");
      }
   
  -   public void transformNode(Cache cache, Node node)
  +   public void transformNode(Cache cache, Node<Object, Object> node)
      {
         cache.put(node.getFqn(), node.getData());
         log.info(node.getFqn() + " transformed");               
  @@ -75,7 +75,7 @@
         checkNode(cache, cache.getRoot());
      }
   
  -   public void checkNode(Cache cache, Node node)
  +   public void checkNode(Cache cache, Node<Object, Object> node)
      {
         log.info("Node: " + node.getFqn() + " | Data: " + node.getData());
   
  
  
  



More information about the jboss-cvs-commits mailing list