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

Manik Surtani msurtani at jboss.com
Tue Aug 15 17:02:23 EDT 2006


  User: msurtani
  Date: 06/08/15 17:02:23

  Modified:    src/org/jboss/cache/interceptors  TxInterceptor.java
  Log:
  Habanero stabilisation efforts
  
  Revision  Changes    Path
  1.54      +2 -1      JBossCache/src/org/jboss/cache/interceptors/TxInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TxInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/TxInterceptor.java,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -b -r1.53 -r1.54
  --- TxInterceptor.java	20 Jul 2006 21:43:36 -0000	1.53
  +++ TxInterceptor.java	15 Aug 2006 21:02:23 -0000	1.54
  @@ -15,6 +15,7 @@
   import org.jboss.cache.ReplicationException;
   import org.jboss.cache.TransactionEntry;
   import org.jboss.cache.TransactionTable;
  +import org.jboss.cache.TreeCacheProxyImpl;
   import org.jboss.cache.config.Configuration;
   import org.jboss.cache.config.Option;
   import org.jboss.cache.marshall.JBCMethodCall;
  @@ -837,7 +838,7 @@
           GlobalTransaction gtx;
           if (isValid(tx) && transactions.put(tx, NULL) == null)
           {
  -            gtx = cache.getCurrentTransaction(tx);
  +            gtx = ((TreeCacheProxyImpl) cache).getCurrentTransaction(tx);
               if (gtx.isRemote())
               {
                   // should be no need to register a handler since this a remotely initiated gtx
  
  
  



More information about the jboss-cvs-commits mailing list