[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo/impl ...

Ben Wang bwang at jboss.com
Mon Jul 17 05:25:01 EDT 2006


  User: bwang   
  Date: 06/07/17 05:25:01

  Modified:    src-50/org/jboss/cache/pojo/impl  PojoCacheDelegate.java
  Log:
  findObjects to skip internal nodes.
  
  Revision  Changes    Path
  1.7       +2 -0      JBossCache/src-50/org/jboss/cache/pojo/impl/PojoCacheDelegate.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoCacheDelegate.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/impl/PojoCacheDelegate.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- PojoCacheDelegate.java	17 Jul 2006 09:07:08 -0000	1.6
  +++ PojoCacheDelegate.java	17 Jul 2006 09:25:01 -0000	1.7
  @@ -546,6 +546,8 @@
            String obj = (String) aSet;
            Fqn newFqn = new Fqn(fqn, obj);
   
  +         if(InternalHelper.isInternalNode(newFqn)) continue; // skip
  +
            Object pojo = getObject(newFqn);
            if (pojo != null)
            {
  
  
  



More information about the jboss-cvs-commits mailing list