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

Manik Surtani msurtani at jboss.com
Fri Jan 26 06:35:12 EST 2007


  User: msurtani
  Date: 07/01/26 06:35:12

  Modified:    src/org/jboss/cache  CacheImpl.java
  Log:
  Fixed dumbass bug in marshaller
  
  Revision  Changes    Path
  1.38      +3 -1      JBossCache/src/org/jboss/cache/CacheImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/CacheImpl.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -b -r1.37 -r1.38
  --- CacheImpl.java	25 Jan 2007 14:12:07 -0000	1.37
  +++ CacheImpl.java	26 Jan 2007 11:35:12 -0000	1.38
  @@ -1487,7 +1487,9 @@
      {
         GlobalTransaction tx = getCurrentTransaction();
         MethodCall m = MethodCallFactory.create(MethodDeclarations.removeNodeMethodLocal, tx, fqn, true);
  -      return (Boolean)invokeMethod(m);
  +      Object retval = invokeMethod(m);
  +      if (retval == null) return false;
  +      return (Boolean) retval;
      }
   
      /**
  
  
  



More information about the jboss-cvs-commits mailing list