From 19ae8da0e8d9de00c518c94d6c0d3e8c9aec5cc7 Mon Sep 17 00:00:00 2001 From: Kevin Jackson Date: Fri, 16 Mar 2007 09:11:27 +0000 Subject: [PATCH] -typo (jeez) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@518895 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/util/ReflectUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/util/ReflectUtil.java b/src/main/org/apache/tools/ant/util/ReflectUtil.java index 36f570510..0fa459af8 100644 --- a/src/main/org/apache/tools/ant/util/ReflectUtil.java +++ b/src/main/org/apache/tools/ant/util/ReflectUtil.java @@ -145,7 +145,7 @@ public class ReflectUtil { * @return * @throws BuildException */ - public static boolean resondsTo(Object o, String methodName) + public static boolean respondsTo(Object o, String methodName) throws BuildException { try { Method[] methods = o.getClass().getMethods();