You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by sh...@apache.org on 2002/10/23 17:46:39 UTC

cvs commit: jakarta-taglibs/cache/src/org/apache/taglibs/cache LRUCache.java

shawn       2002/10/23 08:46:39

  Modified:    cache/src/org/apache/taglibs/cache LRUCache.java
  Log:
  Updated documentation to conform to behavior and address bug 13873
  
  Revision  Changes    Path
  1.2       +2 -2      jakarta-taglibs/cache/src/org/apache/taglibs/cache/LRUCache.java
  
  Index: LRUCache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/cache/src/org/apache/taglibs/cache/LRUCache.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LRUCache.java	3 Apr 2002 03:26:31 -0000	1.1
  +++ LRUCache.java	23 Oct 2002 15:46:39 -0000	1.2
  @@ -62,7 +62,7 @@
    * outside synchronization in the event of concurrent access.</p>
    *
    * <p>Unlike similar LRU-based caches that implement Map (e.g., from Jakarta
  - * Commons), this class has a hard <i>size</i> limit (in bytes), not a
  + * Commons), this class has a hard <i>size</i> limit (in characters), not a
    * limit on the total number of elements.</p>
    *
    * <p>This class works like a Map for the methods it implements, but for
  @@ -220,7 +220,7 @@
     // Constructor
   
     /**
  -   * Constructs an LRUCache that holds no more than <tt>size</tt> bytes.
  +   * Constructs an LRUCache that holds no more than <tt>size</tt> characters.
      * Each entry expires after <tt>expiration</tt> seconds, or never
      * expires if expiration less than or equal to 0.
      */
  
  
  

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