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

Gavin King gavin.king at jboss.com
Thu May 31 18:41:08 EDT 2007


  User: gavin   
  Date: 07/05/31 18:41:07

  Modified:    src/main/org/jboss/seam/core  AbstractDispatcher.java
  Log:
  fix bad bug where PC did not get enlisted in TX started using @Transactional
  
  Revision  Changes    Path
  1.4       +1 -2      jboss-seam/src/main/org/jboss/seam/core/AbstractDispatcher.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AbstractDispatcher.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/AbstractDispatcher.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- AbstractDispatcher.java	31 May 2007 21:05:28 -0000	1.3
  +++ AbstractDispatcher.java	31 May 2007 22:41:07 -0000	1.4
  @@ -173,8 +173,7 @@
            }
         }
         
  -      TimerSchedule schedule = new TimerSchedule(duration, expiration, intervalDuration);
  -      return schedule;
  +      return new TimerSchedule(duration, expiration, intervalDuration);
      }
      
   }
  
  
  



More information about the jboss-cvs-commits mailing list