Fix JavaDoc issues with JDK 1.8

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1583781 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Niall Pemberton 2014-04-01 20:54:53 +00:00
parent 0e2e37bb83
commit a57ca055e7
1 changed files with 1 additions and 1 deletions

View File

@ -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) {