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

Ben Wang bwang at jboss.com
Thu Jul 13 11:56:13 EDT 2006


  User: bwang   
  Date: 06/07/13 11:56:13

  Modified:    src-50/org/jboss/cache/pojo/util  ObjectUtil.java
  Log:
  Refctoring and moved some classes to impl dir.
  
  Revision  Changes    Path
  1.4       +3 -3      JBossCache/src-50/org/jboss/cache/pojo/util/ObjectUtil.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ObjectUtil.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/util/ObjectUtil.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ObjectUtil.java	27 Jun 2006 06:19:17 -0000	1.3
  +++ ObjectUtil.java	13 Jul 2006 15:56:13 -0000	1.4
  @@ -12,7 +12,7 @@
   import org.jboss.cache.CacheException;
   import org.jboss.cache.Fqn;
   import org.jboss.cache.pojo.CachedType;
  -import org.jboss.cache.pojo.PojoTreeCache;
  +import org.jboss.cache.pojo.impl.PojoCacheImpl;
   import org.jboss.cache.pojo.memory.FieldPersistentReference;
   
   import java.lang.reflect.Field;
  @@ -40,7 +40,7 @@
       * @return
       * @throws CacheException
       */
  -   public static boolean isReachable(PojoTreeCache cache, Object originalObject, Object thisObject)
  +   public static boolean isReachable(PojoCacheImpl cache, Object originalObject, Object thisObject)
              throws CacheException
      {
         HashSet objSet = new HashSet();
  @@ -48,7 +48,7 @@
         return isReachableInner(cache, originalObject, thisObject, objSet);
      }
   
  -   private static boolean isReachableInner(PojoTreeCache cache, Object originalObject,
  +   private static boolean isReachableInner(PojoCacheImpl cache, Object originalObject,
                                              Object thisObject, Set objSet)
              throws CacheException
      {
  
  
  



More information about the jboss-cvs-commits mailing list