Fix javadoc link.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1056248 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joerg Schaible 2011-01-07 10:37:25 +00:00
parent 78e2ebfd9c
commit 11a6dd26e3
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ public class ObjectUtils {
* considered less than a Non-<code>null</code> value * considered less than a Non-<code>null</code> value
* @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 * and a positive value if c1 > c2
* @see java.lang.Comparator#compare(Object, Object) * @see java.util.Comparator#compare(Object, Object)
*/ */
public static <T extends Comparable<? super T>> int compare(T c1, T c2, boolean nullGreater) { public static <T extends Comparable<? super T>> int compare(T c1, T c2, boolean nullGreater) {
int result = 0; int result = 0;