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

Manik Surtani msurtani at jboss.com
Fri Oct 20 03:08:54 EDT 2006


  User: msurtani
  Date: 06/10/20 03:08:54

  Modified:    src/org/jboss/cache/interceptors 
                        InvocationContextInterceptor.java
  Log:
  Fixed dumbass bug
  
  Revision  Changes    Path
  1.8       +1 -1      JBossCache/src/org/jboss/cache/interceptors/InvocationContextInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InvocationContextInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/InvocationContextInterceptor.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- InvocationContextInterceptor.java	16 Oct 2006 10:55:40 -0000	1.7
  +++ InvocationContextInterceptor.java	20 Oct 2006 07:08:54 -0000	1.8
  @@ -73,7 +73,7 @@
            }
            else
            {
  -            if (ctx.getTransaction() != null && (isValid(ctx.getTransaction()) || isRollingBack(ctx.getTransaction())))
  +            if (ctx.getTransaction() != null && (isValid(ctx.getTransaction())))// || isRollingBack(ctx.getTransaction())))
               {
                  copyInvocationScopeOptionsToTxScope(ctx);
               }
  
  
  



More information about the jboss-cvs-commits mailing list