You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2014/04/01 22:54:54 UTC

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

Author: niallp
Date: Tue Apr  1 20:54:53 2014
New Revision: 1583781

URL: http://svn.apache.org/r1583781
Log:
Fix JavaDoc issues with JDK 1.8

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=1583781&r1=1583780&r2=1583781&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 Tue Apr  1 20:54:53 2014
@@ -482,7 +482,7 @@ public class ObjectUtils {
      * @param <T> type of the values processed by this method
      * @param c1  the first comparable, may be null
      * @param c2  the second comparable, may be null
-     * @return a negative value if c1 &gt; c2, zero if c1 = c2
+     * @return a negative value if c1 &lt; c2, zero if c1 = c2
      *  and a positive value if c1 &gt; c2
      */
     public static <T extends Comparable<? super T>> int compare(final T c1, final T c2) {