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

Ben Wang bwang at jboss.com
Wed Nov 15 21:54:00 EST 2006


  User: bwang   
  Date: 06/11/15 21:54:00

  Modified:    src/org/jboss/cache/aop  Tag: Branch_JBossCache_1_4_0
                        TreeCacheAopDelegate.java
  Log:
  JBCACHE-850 findObjects cce
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.74.2.7  +1 -1      JBossCache/src/org/jboss/cache/aop/Attic/TreeCacheAopDelegate.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCacheAopDelegate.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/aop/Attic/TreeCacheAopDelegate.java,v
  retrieving revision 1.74.2.6
  retrieving revision 1.74.2.7
  diff -u -b -r1.74.2.6 -r1.74.2.7
  --- TreeCacheAopDelegate.java	25 Oct 2006 14:12:59 -0000	1.74.2.6
  +++ TreeCacheAopDelegate.java	16 Nov 2006 02:53:59 -0000	1.74.2.7
  @@ -653,7 +653,7 @@
         Iterator it = set.iterator();
         while(it.hasNext())
         {
  -         String obj = (String)it.next();
  +         Object obj = (Object)it.next();
            Fqn newFqn = new Fqn(fqn, obj);
   
            Object pojo = _getObject(newFqn);
  
  
  



More information about the jboss-cvs-commits mailing list