Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 99173 invoked from network); 25 Apr 2009 23:28:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Apr 2009 23:28:38 -0000 Received: (qmail 74599 invoked by uid 500); 25 Apr 2009 23:28:37 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 74486 invoked by uid 500); 25 Apr 2009 23:28:37 -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 74477 invoked by uid 99); 25 Apr 2009 23:28:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Apr 2009 23:28:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Apr 2009 23:28:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7AE992388A3D; Sat, 25 Apr 2009 23:28:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r768625 - /commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java Date: Sat, 25 Apr 2009 23:28:16 -0000 To: commits@commons.apache.org From: billbarker@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090425232816.7AE992388A3D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: billbarker Date: Sat Apr 25 23:28:16 2009 New Revision: 768625 URL: http://svn.apache.org/viewvc?rev=768625&view=rev Log: Javadoc fixes, sorry for the noise Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java?rev=768625&r1=768624&r2=768625&view=diff ============================================================================== --- commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java (original) +++ commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java Sat Apr 25 23:28:16 2009 @@ -94,6 +94,7 @@ /** * Build an empty map with default size and using zero for missing entries. + * @param field field to which the elements belong */ public OpenIntToFieldHashMap(final Fieldfield) { this(field, DEFAULT_EXPECTED_SIZE, field.getZero()); @@ -101,6 +102,7 @@ /** * Build an empty map with default size + * @param field field to which the elements belong * @param missingEntries value to return when a missing entry is fetched */ public OpenIntToFieldHashMap(final Fieldfield, final T missingEntries) { @@ -109,6 +111,7 @@ /** * Build an empty map with specified size and using zero for missing entries. + * @param field field to which the elements belong * @param expectedSize expected number of elements in the map */ public OpenIntToFieldHashMap(final Field field,final int expectedSize) { @@ -117,6 +120,7 @@ /** * Build an empty map with specified size. + * @param field field to which the elements belong * @param expectedSize expected number of elements in the map * @param missingEntries value to return when a missing entry is fetched */