Github user Derek-Ashmore commented on a diff in the pull request:
https://github.com/apache/commons-lang/pull/141#discussion_r65728446
--- Diff: src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java
---
@@ -92,6 +92,29 @@ public static Object invokeMethod(final Object object,
final String methodName)
IllegalAccessException, InvocationTargetException {
return invokeMethod(object, methodName,
ArrayUtils.EMPTY_OBJECT_ARRAY, null);
}
+
+ /**
+ * <p>Invokes a named method without parameters.</p>
+ *
+ * <p>This is a convenient wrapper for
+ * {@link #invokeMethod(Object object,String methodName, Object[]
args, Class[] parameterTypes)}.
--- End diff --
Yeah -- my bad. I'll correct the javadoc link. Thanks for catching that.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---