This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git
commit d33961d6923900781b8ff5631cf5f6a9c5fd81d7 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Sep 3 07:57:05 2024 -0400 Use final --- src/main/java/org/apache/commons/beanutils2/MethodUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java index fe2acfb2..486859df 100644 --- a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java +++ b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java @@ -67,7 +67,7 @@ public class MethodUtils { * @param paramTypes the array of classes representing the parameter types * @param exact whether the match has to be exact. */ - public MethodDescriptor(final Class<?> cls, final String methodName, Class<?>[] paramTypes, + public MethodDescriptor(final Class<?> cls, final String methodName, final Class<?>[] paramTypes, final boolean exact) { this.cls = Objects.requireNonNull(cls, "cls"); this.methodName = Objects.requireNonNull(methodName, "methodName");