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

Elias Ross genman at noderunner.net
Sun Nov 19 22:59:39 EST 2006


  User: genman  
  Date: 06/11/19 22:59:39

  Modified:    src-50/org/jboss/cache/pojo  PojoTreeCache.java
  Log:
  Change return type of peek()
  
  Revision  Changes    Path
  1.16      +2 -1      JBossCache/src-50/org/jboss/cache/pojo/PojoTreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoTreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/PojoTreeCache.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- PojoTreeCache.java	13 Oct 2006 10:30:28 -0000	1.15
  +++ PojoTreeCache.java	20 Nov 2006 03:59:39 -0000	1.16
  @@ -9,6 +9,7 @@
   import org.jboss.cache.CacheException;
   import org.jboss.cache.DataNode;
   import org.jboss.cache.Fqn;
  +import org.jboss.cache.Node;
   import org.jboss.cache.RegionNotEmptyException;
   import org.jboss.cache.TreeCache;
   //import org.jboss.cache.aop.statetransfer.PojoStateTransferManager;
  @@ -72,7 +73,7 @@
      private boolean isAopNode(Fqn fqn)
      {
         // Use this API so it doesn't go thru the interceptor.
  -      DataNode node = peek(fqn);
  +      Node node = peek(fqn);
         if (node == null) return false;
   
         if (node.get(PojoInstance.KEY) != null)
  
  
  



More information about the jboss-cvs-commits mailing list