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 > c2, zero if c1 = c2
+ * @return a negative value if c1 < c2, zero if c1 = c2
* and a positive value if c1 > c2
*/
public static <T extends Comparable<? super T>> int compare(final T c1,
final T c2) {