User: allsopp 
  Date: 01/02/04 17:53:18

  Modified:    src/main/org/jboss/ejb/plugins TxInterceptorBMT.java
  Log:
  Fixed a (commented out) bug in the bug fix. The debugging would have NPEed.
  
  Revision  Changes    Path
  1.14      +2 -2      jboss/src/main/org/jboss/ejb/plugins/TxInterceptorBMT.java
  
  Index: TxInterceptorBMT.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/TxInterceptorBMT.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- TxInterceptorBMT.java     2001/02/05 01:46:14     1.13
  +++ TxInterceptorBMT.java     2001/02/05 01:53:18     1.14
  @@ -50,7 +50,7 @@
   *   @author <a href="mailto:[EMAIL PROTECTED]">Marc Fleury</a>
   *   @author <a href="mailto:[EMAIL PROTECTED]">Sebastien Alborini</a>
   *   @author Peter Antman ([EMAIL PROTECTED])
  -*   @version $Revision: 1.13 $
  +*   @version $Revision: 1.14 $
   */
   public class TxInterceptorBMT
   extends AbstractInterceptor
  @@ -304,7 +304,7 @@
               userTransaction.set(oldUserTx);
               
   //DEBUG         Logger.debug("TxInterceptorBMT reassociating client tx " +
  -//DEBUG                      t1.hashCode());
  +//DEBUG                      (t1==null?"null":String.valueOf(t1.hashCode())));
                   
               // reassociate the previous transaction before returning,
               // even if it was null
  
  
  

Reply via email to