Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4D5E117FC6 for ; Mon, 1 Jun 2015 22:40:57 +0000 (UTC) Received: (qmail 11317 invoked by uid 500); 1 Jun 2015 22:40:57 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 11229 invoked by uid 500); 1 Jun 2015 22:40:57 -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 11220 invoked by uid 99); 1 Jun 2015 22:40:57 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2015 22:40:57 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 03B79AC026E for ; Mon, 1 Jun 2015 22:40:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1683016 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java Date: Mon, 01 Jun 2015 22:40:56 -0000 To: commits@commons.apache.org From: tn@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150601224057.03B79AC026E@hades.apache.org> Author: tn Date: Mon Jun 1 22:40:56 2015 New Revision: 1683016 URL: http://svn.apache.org/r1683016 Log: Fix javadoc problem. Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java?rev=1683016&r1=1683015&r2=1683016&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java Mon Jun 1 22:40:56 2015 @@ -117,7 +117,6 @@ public class LRUMap * load factor. * * @param maxSize the maximum size of the map - * @param initialSize the initial size of the map * @param loadFactor the load factor * @throws IllegalArgumentException if the maximum size is less than one * @throws IllegalArgumentException if the load factor is less than zero @@ -131,6 +130,7 @@ public class LRUMap * load factor. * * @param maxSize the maximum size of the map + * @param initialSize the initial size of the map * @param loadFactor the load factor * @throws IllegalArgumentException if the maximum size is less than one * @throws IllegalArgumentException if the initial size is negative or larger than the maximum size @@ -167,7 +167,11 @@ public class LRUMap * @throws IllegalArgumentException if the load factor is less than zero * @since 4.1 */ - public LRUMap(final int maxSize, final int initialSize, final float loadFactor, final boolean scanUntilRemovable) { + public LRUMap(final int maxSize, + final int initialSize, + final float loadFactor, + final boolean scanUntilRemovable) { + super(initialSize, loadFactor); if (maxSize < 1) { throw new IllegalArgumentException("LRUMap max size must be greater than 0");