[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/loader ...

Manik Surtani msurtani at jboss.com
Thu Jan 4 09:36:00 EST 2007


  User: msurtani
  Date: 07/01/04 09:36:00

  Modified:    tests/functional/org/jboss/cache/loader 
                        DummyInMemoryCacheLoader.java
  Log:
  fixed stuff
  
  Revision  Changes    Path
  1.6       +1 -1      JBossCache/tests/functional/org/jboss/cache/loader/DummyInMemoryCacheLoader.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DummyInMemoryCacheLoader.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/loader/DummyInMemoryCacheLoader.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- DummyInMemoryCacheLoader.java	31 Dec 2006 02:08:41 -0000	1.5
  +++ DummyInMemoryCacheLoader.java	4 Jan 2007 14:36:00 -0000	1.6
  @@ -99,7 +99,7 @@
            n = new Node();
            n.fqn = name;
         }
  -      n.data.putAll(attributes);
  +      if (attributes != null) n.data.putAll(attributes);
         nodes.put(name, n);
         log.debug("Did a put on " + name + ", data is " + n.data);
      }
  
  
  



More information about the jboss-cvs-commits mailing list