You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2011/04/14 00:44:40 UTC

svn commit: r1091967 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java

Author: mbenson
Date: Wed Apr 13 22:44:40 2011
New Revision: 1091967

URL: http://svn.apache.org/viewvc?rev=1091967&view=rev
Log:
remove javadoc param tag for nonexistent parameter

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java?rev=1091967&r1=1091966&r2=1091967&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java Wed Apr 13 22:44:40 2011
@@ -209,7 +209,6 @@ public class ObjectUtils {
      * ObjectUtils.hashCodeMulti(a,b,c)            = ((31 + a.hashCode()) * 31 + b.hashCode()) * 31 + c.hashCode()
      * </pre>
      *
-     * @param first  the first object, may be {@code null}
      * @param objects  the objects to obtain the hash code of, may be {@code null}
      * @return the hash code of the objects, or zero if null
      * @since 3.0