Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 97285 invoked from network); 2 Jan 2008 07:23:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jan 2008 07:23:41 -0000 Received: (qmail 93712 invoked by uid 500); 2 Jan 2008 07:23:29 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 93665 invoked by uid 500); 2 Jan 2008 07:23:29 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 93656 invoked by uid 99); 2 Jan 2008 07:23:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jan 2008 23:23:29 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jan 2008 07:23:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CDAD81A9838; Tue, 1 Jan 2008 23:23:19 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r608030 - /commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/AbstractLinkedMap.java Date: Wed, 02 Jan 2008 07:23:19 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080102072319.CDAD81A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bayard Date: Tue Jan 1 23:23:14 2008 New Revision: 608030 URL: http://svn.apache.org/viewvc?rev=608030&view=rev Log: Updating javadoc as per COLLECTIONS-262 - the firstKey and lastKey javadoc methods were back to front for parts of their description Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/AbstractLinkedMap.java Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/AbstractLinkedMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/AbstractLinkedMap.java?rev=608030&r1=608029&r2=608030&view=diff ============================================================================== --- commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/AbstractLinkedMap.java (original) +++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/AbstractLinkedMap.java Tue Jan 1 23:23:14 2008 @@ -168,9 +168,9 @@ //----------------------------------------------------------------------- /** - * Gets the first key in the map, which is the most recently inserted. + * Gets the first key in the map, which is the first inserted. * - * @return the most recently inserted key + * @return the eldest key */ public Object firstKey() { if (size == 0) { @@ -180,9 +180,9 @@ } /** - * Gets the last key in the map, which is the first inserted. + * Gets the last key in the map, which is the most recently inserted. * - * @return the eldest key + * @return the most recently inserted key */ public Object lastKey() { if (size == 0) {