Skip to content

Commit e2b349d

Browse files
committed
Fix exception message
1 parent adc598c commit e2b349d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ private static Method requireNonNull(final Method method, final Class<?> cls, fi
10681068
throws NoSuchMethodException {
10691069
if (method == null) {
10701070
throw new NoSuchMethodException(String.format("No method: %s.%s(%s)", cls.getName(), methodName,
1071-
Stream.of(parameterTypes).map(Class::getName).collect(LangCollectors.joining())));
1071+
Stream.of(parameterTypes).map(Class::getName).collect(LangCollectors.joining(", "))));
10721072
}
10731073
return method;
10741074
}

0 commit comments

Comments
 (0)