Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 10879 invoked from network); 25 Jan 2003 13:01:46 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 25 Jan 2003 13:01:46 -0000 Received: (qmail 6904 invoked by uid 97); 25 Jan 2003 13:03:08 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@jakarta.apache.org Received: (qmail 6888 invoked by uid 97); 25 Jan 2003 13:03:07 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 6870 invoked by uid 97); 25 Jan 2003 13:03:06 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Date: 25 Jan 2003 13:01:39 -0000 Message-ID: <20030125130139.77615.qmail@icarus.apache.org> From: scolebourne@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/reflect MethodUtils.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N scolebourne 2003/01/25 05:01:38 Modified: lang/src/java/org/apache/commons/lang/reflect MethodUtils.java Log: Remove unused code from Gary Gregory, bug fix 16284 Revision Changes Path 1.11 +2 -4 jakarta-commons/lang/src/java/org/apache/commons/lang/reflect/MethodUtils.java Index: MethodUtils.java =================================================================== RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/reflect/MethodUtils.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- MethodUtils.java 25 Dec 2002 22:03:00 -0000 1.10 +++ MethodUtils.java 25 Jan 2003 13:01:38 -0000 1.11 @@ -75,6 +75,7 @@ * @author Gregor Ra�man * @author Jan Sorensen * @author Robert Burrell Donkin + * @author Gary Gregory * @version $Id$ */ public class MethodUtils { @@ -428,8 +429,6 @@ } // Check the implemented interfaces and subinterfaces - String methodName = method.getName(); - Class[] parameterTypes = method.getParameterTypes(); method = getAccessibleMethodFromInterfaceNest(clazz, method.getName(), @@ -516,7 +515,6 @@ } // search through all methods - int paramSize = parameterTypes.length; Method[] methods = clazz.getMethods(); ArrayList compatibles = new ArrayList(methods.length); for (int i = 0, size = methods.length; i < size ; i++) { -- To unsubscribe, e-mail: For additional commands, e-mail: