[jboss-cvs] jboss-seam/src/main/org/jboss/seam/interceptors ...

Gavin King gavin.king at jboss.com
Tue May 1 02:58:32 EDT 2007


  User: gavin   
  Date: 07/05/01 02:58:32

  Modified:    src/main/org/jboss/seam/interceptors 
                        SynchronizationInterceptor.java
  Log:
  JBSEAM-1272
  
  Revision  Changes    Path
  1.7       +2 -2      jboss-seam/src/main/org/jboss/seam/interceptors/SynchronizationInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SynchronizationInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/SynchronizationInterceptor.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- SynchronizationInterceptor.java	9 Feb 2007 03:44:22 -0000	1.6
  +++ SynchronizationInterceptor.java	1 May 2007 06:58:31 -0000	1.7
  @@ -1,4 +1,4 @@
  -//$Id: SynchronizationInterceptor.java,v 1.6 2007/02/09 03:44:22 gavin Exp $
  +//$Id: SynchronizationInterceptor.java,v 1.7 2007/05/01 06:58:31 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.util.concurrent.TimeUnit;
  @@ -22,7 +22,7 @@
      private ReentrantLock lock = new ReentrantLock(true);
      
      @AroundInvoke
  -   public synchronized Object aroundInvoke(InvocationContext invocation) throws Exception
  +   public Object aroundInvoke(InvocationContext invocation) throws Exception
      {
         if ( lock.tryLock( getComponent().getTimeout(), TimeUnit.MILLISECONDS ) )
         {
  
  
  



More information about the jboss-cvs-commits mailing list