Return-Path: Delivered-To: apmail-jakarta-oro-dev-archive@www.apache.org Received: (qmail 24494 invoked from network); 20 Oct 2003 19:21:44 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 20 Oct 2003 19:21:44 -0000 Received: (qmail 75220 invoked by uid 500); 20 Oct 2003 19:21:33 -0000 Delivered-To: apmail-jakarta-oro-dev-archive@jakarta.apache.org Received: (qmail 75200 invoked by uid 500); 20 Oct 2003 19:21:33 -0000 Mailing-List: contact oro-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "ORO Developers List" Reply-To: "ORO Developers List" Delivered-To: mailing list oro-dev@jakarta.apache.org Received: (qmail 75187 invoked by uid 500); 20 Oct 2003 19:21:33 -0000 Received: (qmail 75183 invoked from network); 20 Oct 2003 19:21:32 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 20 Oct 2003 19:21:32 -0000 Received: (qmail 24482 invoked by uid 1170); 20 Oct 2003 19:21:42 -0000 Date: 20 Oct 2003 19:21:42 -0000 Message-ID: <20031020192142.24481.qmail@minotaur.apache.org> From: dfs@apache.org To: jakarta-oro-cvs@apache.org Subject: cvs commit: jakarta-oro/src/java/org/apache/oro/util CacheLRU.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dfs 2003/10/20 12:21:42 Modified: src/java/org/apache/oro/util CacheLRU.java Log: Fixed description of addElement in response to Bugzilla report 23918 submitted by ta_takaha@yahoo.co.jp. Revision Changes Path 1.8 +3 -3 jakarta-oro/src/java/org/apache/oro/util/CacheLRU.java Index: CacheLRU.java =================================================================== RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/CacheLRU.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- CacheLRU.java 12 Aug 2003 18:11:32 -0000 1.7 +++ CacheLRU.java 20 Oct 2003 19:21:42 -0000 1.8 @@ -155,8 +155,8 @@ /** * Adds a value to the cache. If the cache is full, when a new value - * is added to the cache, it replaces the first of the current values - * in the cache to have been added (i.e., FIFO). + * is added to the cache, it replaces the least recently used value + * in the cache to have been added (i.e., LRU). *

* @param key The key referencing the value added to the cache. * @param value The value to add to the cache. --------------------------------------------------------------------- To unsubscribe, e-mail: oro-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: oro-dev-help@jakarta.apache.org