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

Manik Surtani msurtani at jboss.com
Wed Nov 15 12:06:30 EST 2006


  User: msurtani
  Date: 06/11/15 12:06:30

  Modified:    src/org/jboss/cache  TreeCacheProxyImpl.java
  Log:
  Temp impl of JBCACHE-848
  
  Revision  Changes    Path
  1.49      +3 -2      JBossCache/src/org/jboss/cache/TreeCacheProxyImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCacheProxyImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/TreeCacheProxyImpl.java,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -b -r1.48 -r1.49
  --- TreeCacheProxyImpl.java	15 Nov 2006 06:49:25 -0000	1.48
  +++ TreeCacheProxyImpl.java	15 Nov 2006 17:06:30 -0000	1.49
  @@ -216,8 +216,9 @@
   
      public void putForExternalRead(Fqn fqn, Object key, Object value)
      {
  -      // TODO Implement this method
  -      throw new RuntimeException("TODO: Needs to be implemented");
  +      // TODO Implement this method PROPERLY as per JBCACHE-848
  +      getInvocationContext().getOptionOverrides().setFailSilently(true);
  +      put(fqn, key, value);
      }
   
      public void put(Fqn fqn, Map data)
  
  
  



More information about the jboss-cvs-commits mailing list