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

Manik Surtani msurtani at jboss.com
Fri Nov 3 04:48:13 EST 2006


  User: msurtani
  Date: 06/11/03 04:48:13

  Modified:    src/org/jboss/cache  Tag: Branch_JBossCache_1_4_0
                        TreeCache.java
  Log:
  JG compat
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.195.2.15 +10 -2     JBossCache/src/org/jboss/cache/TreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/TreeCache.java,v
  retrieving revision 1.195.2.14
  retrieving revision 1.195.2.15
  diff -u -b -r1.195.2.14 -r1.195.2.15
  --- TreeCache.java	31 Oct 2006 14:55:37 -0000	1.195.2.14
  +++ TreeCache.java	3 Nov 2006 09:48:13 -0000	1.195.2.15
  @@ -99,7 +99,7 @@
    * @author <a href="mailto:manik at jboss.org">Manik Surtani (manik at jboss.org)</a>
    * @author Brian Stansberry
    * @author Daniel Huang (dhuang at jboss.org)
  - * @version $Id: TreeCache.java,v 1.195.2.14 2006/10/31 14:55:37 msurtani Exp $
  + * @version $Id: TreeCache.java,v 1.195.2.15 2006/11/03 09:48:13 msurtani Exp $
    *          <p/>
    * @see <a href="http://labs.jboss.com/portal/jbosscache/docs">JBossCache doc</a>
    */
  @@ -4198,7 +4198,15 @@
         {
            // use a UNICAST
            Address recipient = (Address) validMembers.get(0);
  -         Object r = disp.callRemoteMethod(recipient, method_call, mode, timeout);
  +         Object r = null;
  +         try
  +         {
  +            r = disp.callRemoteMethod(recipient, method_call, mode, timeout);
  +         }
  +         catch (Throwable throwable)
  +         {
  +            throw new Exception(throwable);
  +         }
            rsps = new RspList();
            rsps.addRsp(recipient, r);
         }
  
  
  



More information about the jboss-cvs-commits mailing list