commentary

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1147515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2011-07-17 02:56:15 +00:00
parent 8ffdb2df2e
commit b81dfde37c
1 changed files with 3 additions and 1 deletions

View File

@ -320,7 +320,7 @@ public static String toString(Object obj, String nullStr) {
return obj == null ? nullStr : obj.toString();
}
// Min/Max
// Comparable
//-----------------------------------------------------------------------
/**
* <p>Null safe comparison of Comparables.</p>
@ -410,6 +410,8 @@ public static <T extends Comparable<? super T>> int compare(T c1, T c2, boolean
return c1.compareTo(c2);
}
// cloning
//-----------------------------------------------------------------------
/**
* <p>Clone an object.</p>
*