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

Manik Surtani manik at jboss.org
Mon Mar 12 14:13:47 EDT 2007


  User: msurtani
  Date: 07/03/12 14:13:47

  Modified:    src/org/jboss/cache/lock   LockUtil.java IdentityLock.java
  Log:
  JBCACHE-1005
  
  Revision  Changes    Path
  1.9       +7 -7      JBossCache/src/org/jboss/cache/lock/LockUtil.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LockUtil.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/lock/LockUtil.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- LockUtil.java	7 Feb 2007 22:06:49 -0000	1.8
  +++ LockUtil.java	12 Mar 2007 18:13:47 -0000	1.9
  @@ -65,7 +65,7 @@
       * @param lockChildren <code>true</code> if this method should be recursively
       *                     applied to <code>node</code>'s children.
       */
  -   public static void forceAcquireLock(NodeSPI node,
  +   public static void forceAcquireLock(NodeSPI<?, ?> node,
                                          Object newOwner,
                                          CacheImpl cache,
                                          boolean lockChildren)
  
  
  
  1.23      +15 -15    JBossCache/src/org/jboss/cache/lock/IdentityLock.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: IdentityLock.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/lock/IdentityLock.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -b -r1.22 -r1.23
  --- IdentityLock.java	7 Feb 2007 22:06:49 -0000	1.22
  +++ IdentityLock.java	12 Mar 2007 18:13:47 -0000	1.23
  @@ -60,7 +60,7 @@
    *
    * @author <a href="mailto:bela at jboss.org">Bela Ban</a> Apr 11, 2003
    * @author Ben Wang July 2003
  - * @version $Revision: 1.22 $
  + * @version $Revision: 1.23 $
    */
   public class IdentityLock implements NodeLock
   {
  @@ -75,7 +75,7 @@
      private final LockStrategy lock_;
      private final LockMap map_;
      private final boolean mustReacquireRead_;
  -   private NodeSPI node;
  +   private NodeSPI<?, ?> node;
   
      /**
       * Creates a new Identity lock based on the lock level set in the {@link LockStrategyFactory}
  
  
  



More information about the jboss-cvs-commits mailing list