You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/04/09 20:02:13 UTC

svn commit: r1311359 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java

Author: tn
Date: Mon Apr  9 18:02:13 2012
New Revision: 1311359

URL: http://svn.apache.org/viewvc?rev=1311359&view=rev
Log:
[COLLECTIONS-391] Fixed javadoc, thanks to Shin Hwei Tan.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java?rev=1311359&r1=1311358&r2=1311359&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java Mon Apr  9 18:02:13 2012
@@ -849,7 +849,7 @@ public class MapUtils {
      * Gets a new Properties object initialised with the values from a Map.
      * A null input will return an empty properties object.
      *
-     * @param map  the map to convert to a Properties object, may not be null
+     * @param map  the map to convert to a Properties object
      * @return the properties object
      */
     public static <K, V> Properties toProperties(final Map<K, V> map) {