dain        2005/03/01 18:34:15

  Modified:    modules/core/src/java/org/openejb/entity
                        EntityInstanceInterceptor.java
  Log:

  Changed to use new TransactionManagerContext methods managing bean 
transactions
  Fixed improper handling of bean transactions in StatefulInstanceInterceptor
  Removed excessive handling of bean transactions in the SFSB and SLSB vops
  
  Revision  Changes    Path
  1.15      +2 -2      
openejb/modules/core/src/java/org/openejb/entity/EntityInstanceInterceptor.java
  
  Index: EntityInstanceInterceptor.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/entity/EntityInstanceInterceptor.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- EntityInstanceInterceptor.java    26 Feb 2005 01:02:39 -0000      1.14
  +++ EntityInstanceInterceptor.java    1 Mar 2005 23:34:15 -0000       1.15
  @@ -148,7 +148,7 @@
               }
               throw t;
           } finally {
  -            ejbInvocation.getTransactionContext().endInvocation(oldContext);
  +            transactionContext.endInvocation(oldContext);
               ejbInvocation.setEJBInstanceContext(null);
           }
       }
  
  
  

Reply via email to