You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by do...@apache.org on 2001/12/07 14:03:57 UTC

cvs commit: jakarta-avalon-excalibur/src/java/org/apache/avalon/excalibur/pool Recyclable.java

donaldp     01/12/07 05:03:57

  Modified:    src/java/org/apache/avalon/excalibur/pool Recyclable.java
  Log:
  Fixed some typos and spelling m,istakes.
  
  Submitted By: Marcus Crafter <cr...@fztig938.bank.dresdner.net>
  
  Revision  Changes    Path
  1.4       +4 -4      jakarta-avalon-excalibur/src/java/org/apache/avalon/excalibur/pool/Recyclable.java
  
  Index: Recyclable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/src/java/org/apache/avalon/excalibur/pool/Recyclable.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Recyclable.java	2001/11/19 12:08:48	1.3
  +++ Recyclable.java	2001/12/07 13:03:57	1.4
  @@ -14,9 +14,9 @@
    * Therefore, a recyclable object may be recycled and reused many times.
    *
    * This is helpful in cases where recyclable objects are continously
  - * created and destroied, causing a much greater amount of garbage to
  + * created and destroyed, causing a much greater amount of garbage to
    * be collected by the JVM garbage collector. By making it recyclable,
  - * it is possible to reduce the GC execution time thus incrementing the
  + * it is possible to reduce the GC execution time, thus incrementing the
    * overall performance of a process and decrementing the chance of
    * memory overflow.
    *
  @@ -25,7 +25,7 @@
    *
    * @author <a href="mailto:stefano@apache.org">Stefano Mazzocchi</a>
    * @author <a href="mailto:peter@apache.org">Peter Donald</a>
  - * @version CVS $Revision: 1.3 $ $Date: 2001/11/19 12:08:48 $
  + * @version CVS $Revision: 1.4 $ $Date: 2001/12/07 13:03:57 $
    * @since 4.0
    */
   public interface Recyclable
  @@ -34,7 +34,7 @@
       /**
        * This method should be implemented to remove all costly resources
        * in object. These resources can be object references, database connections,
  -     * threads etc. What is categorised as "costly" resources is determined on
  +     * threads, etc. What is categorised as "costly" resources is determined on
        * a case by case analysis.
        */
       void recycle();
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>