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

Mircea Markus mircea.markus at gmail.com
Mon Mar 5 16:59:25 EST 2007


  User: mmarkus 
  Date: 07/03/05 16:59:25

  Modified:    src/org/jboss/cache/loader  JDBCCacheLoader.java
  Log:
  on start, if the root does not exists it is added with an empty map. I am adding it with a null map to be consistent with the rest of implementation
  
  Revision  Changes    Path
  1.34      +1 -1      JBossCache/src/org/jboss/cache/loader/JDBCCacheLoader.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: JDBCCacheLoader.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/loader/JDBCCacheLoader.java,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -b -r1.33 -r1.34
  --- JDBCCacheLoader.java	5 Mar 2007 21:10:43 -0000	1.33
  +++ JDBCCacheLoader.java	5 Mar 2007 21:59:25 -0000	1.34
  @@ -225,7 +225,7 @@
           super.start();
           if (!exists(Fqn.ROOT) && getNodeCount() > 0)
           {
  -            put(Fqn.ROOT, new HashMap());
  +            put(Fqn.ROOT, null);
           }
       }
   
  
  
  



More information about the jboss-cvs-commits mailing list