vgritsenko    02/04/27 11:31:53

  Modified:    src/java/org/apache/cocoon/components/store
                        StoreJanitorImpl.java
  Log:
  fix javadoc
  
  Revision  Changes    Path
  1.12      +5 -6      
xml-cocoon2/src/java/org/apache/cocoon/components/store/StoreJanitorImpl.java
  
  Index: StoreJanitorImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/store/StoreJanitorImpl.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- StoreJanitorImpl.java     22 Feb 2002 07:00:14 -0000      1.11
  +++ StoreJanitorImpl.java     27 Apr 2002 18:31:53 -0000      1.12
  @@ -59,7 +59,6 @@
   import org.apache.avalon.framework.thread.ThreadSafe;
   
   import java.util.ArrayList;
  -import java.util.Enumeration;
   import java.util.Iterator;
   
   /**
  @@ -70,7 +69,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]";>Christian Schmitt</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Gerhard Froehlich</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Peter Royal</a>
  - * @version CVS $Id: StoreJanitorImpl.java,v 1.11 2002/02/22 07:00:14 cziegeler Exp 
$
  + * @version CVS $Id: StoreJanitorImpl.java,v 1.12 2002/04/27 18:31:53 vgritsenko 
Exp $
    */
   public class StoreJanitorImpl
   extends AbstractLoggable
  @@ -100,7 +99,7 @@
        *  <LI>threadpriority = priority of the thread (1-10). (Default: 10)</LI>
        * </UL>
        *
  -     * @param the Configuration of the application
  +     * @param conf the Configuration of the application
        * @exception ConfigurationException
        */
       public void configure(Configuration conf) throws ConfigurationException {
  @@ -215,7 +214,7 @@
       /**
        * This method register the stores
        *
  -     * @param the store to be registered
  +     * @param store the store to be registered
        */
       public void register(Store store) {
           this.getStoreList().add(store);
  @@ -229,7 +228,7 @@
       /**
        * This method unregister the stores
        *
  -     * @param the store to be unregistered
  +     * @param store the store to be unregistered
        */
       public void unregister(Store store) {
           this.getStoreList().remove(store);
  @@ -336,11 +335,11 @@
   
       /**
        * This method forces the garbage collector
  -     */
       private void freePhysicalMemory() {
           this.getJVM().runFinalization();
           this.getJVM().gc();
       }
  +     */
   
       private int getFreememory() {
           return freememory;
  
  
  

----------------------------------------------------------------------
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