vgritsenko    01/08/18 10:54:47

  Modified:    src/org/apache/cocoon/components/store MRUMemoryStore.java
  Log:
  Patch from Gerhard
  
  Revision  Changes    Path
  1.9       +1 -1      
xml-cocoon2/src/org/apache/cocoon/components/store/MRUMemoryStore.java
  
  Index: MRUMemoryStore.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/org/apache/cocoon/components/store/MRUMemoryStore.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- MRUMemoryStore.java       2001/07/22 17:58:05     1.8
  +++ MRUMemoryStore.java       2001/08/18 17:54:47     1.9
  @@ -159,7 +159,7 @@
      */
     public void configure(Configuration conf) throws ConfigurationException {
       this.jvm         = Runtime.getRuntime();
  -    this.cache       = new HashMap();
  +    this.cache       = new HashMap(75);
       this.mrulist     = new LinkedList();
       this.writerstack = new Stack();
     
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to