Index: src/org/apache/cocoon/components/store/MRUMemoryStore.java
===================================================================
RCS file: /home/cvspublic/xml-cocoon2/src/org/apache/cocoon/components/store/MRUMemoryStore.java,v
retrieving revision 1.8
diff -u -r1.8 MRUMemoryStore.java
--- src/org/apache/cocoon/components/store/MRUMemoryStore.java	2001/07/22 17:58:05	1.8
+++ src/org/apache/cocoon/components/store/MRUMemoryStore.java	2001/08/18 10:07:42
@@ -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();

