Remove unused code
from Gary Gregory, bug fix 16284 git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137235 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ab53513741
commit
c23e693049
|
@ -75,7 +75,8 @@ import org.apache.commons.lang.ArrayUtils;
|
||||||
* @author Gregor Raýman
|
* @author Gregor Raýman
|
||||||
* @author Jan Sorensen
|
* @author Jan Sorensen
|
||||||
* @author Robert Burrell Donkin
|
* @author Robert Burrell Donkin
|
||||||
* @version $Id: MethodUtils.java,v 1.10 2002/12/25 22:03:00 scolebourne Exp $
|
* @author Gary Gregory
|
||||||
|
* @version $Id: MethodUtils.java,v 1.11 2003/01/25 13:01:38 scolebourne Exp $
|
||||||
*/
|
*/
|
||||||
public class MethodUtils {
|
public class MethodUtils {
|
||||||
|
|
||||||
|
@ -428,8 +429,6 @@ public class MethodUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check the implemented interfaces and subinterfaces
|
// Check the implemented interfaces and subinterfaces
|
||||||
String methodName = method.getName();
|
|
||||||
Class[] parameterTypes = method.getParameterTypes();
|
|
||||||
method =
|
method =
|
||||||
getAccessibleMethodFromInterfaceNest(clazz,
|
getAccessibleMethodFromInterfaceNest(clazz,
|
||||||
method.getName(),
|
method.getName(),
|
||||||
|
@ -516,7 +515,6 @@ public class MethodUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
// search through all methods
|
// search through all methods
|
||||||
int paramSize = parameterTypes.length;
|
|
||||||
Method[] methods = clazz.getMethods();
|
Method[] methods = clazz.getMethods();
|
||||||
ArrayList compatibles = new ArrayList(methods.length);
|
ArrayList compatibles = new ArrayList(methods.length);
|
||||||
for (int i = 0, size = methods.length; i < size ; i++) {
|
for (int i = 0, size = methods.length; i < size ; i++) {
|
||||||
|
|
Loading…
Reference in New Issue