You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bi...@apache.org on 2009/04/26 01:28:16 UTC

svn commit: r768625 - /commons/proper/math/trunk/src/java/org/apache/commons/math/util/OpenIntToFieldHashMap.java

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 Field<T>field) {
         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 Field<T>field, 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<T> 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
      */