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-lang.git

commit e2b349d046ec9945ece518b068ae38bc73b7f83c
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Aug 29 17:37:07 2025 -0400

    Fix exception message
---
 src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java 
b/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java
index 80cbaf6e1..2437af01b 100644
--- a/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java
+++ b/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java
@@ -1068,7 +1068,7 @@ private static Method requireNonNull(final Method method, 
final Class<?> cls, fi
             throws NoSuchMethodException {
         if (method == null) {
             throw new NoSuchMethodException(String.format("No method: 
%s.%s(%s)", cls.getName(), methodName,
-                    
Stream.of(parameterTypes).map(Class::getName).collect(LangCollectors.joining())));
+                    
Stream.of(parameterTypes).map(Class::getName).collect(LangCollectors.joining(", 
"))));
         }
         return method;
     }

Reply via email to