comments, a spelling correction, some ws

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@752469 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2009-03-11 15:27:27 +00:00
parent 67bca7a1e8
commit 9ec9d423fa
1 changed files with 21 additions and 19 deletions

View File

@ -397,6 +397,7 @@ public class ClassUtils {
* @param toClassArray the array of Classes to try to assign into, may be <code>null</code>
* @return <code>true</code> if assignment possible
*/
//TODO when we bump the major version we should default autoboxing to true on platforms >= 1.5
public static boolean isAssignable(Class[] classArray, Class[] toClassArray) {
return isAssignable(classArray, toClassArray, false);
}
@ -477,6 +478,7 @@ public class ClassUtils {
* @param toClass the Class to try to assign into, returns false if null
* @return <code>true</code> if assignment possible
*/
//TODO when we bump the major version we should default autoboxing to true on platforms >= 1.5
public static boolean isAssignable(Class cls, Class toClass) {
return isAssignable(cls, toClass, false);
}