SimpleMethodMetadataReadingVisitor.Source.toString() omits separator for method arguments #27095
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
status: backported
An issue that has been backported to maintenance branches
type: bug
A general bug
Milestone
The
toString()
implementation inSimpleMethodMetadataReadingVisitor.Source
does not separatemethod argument types with a comma.
For example, it generates
org.example.MyClass.myMethod(java.lang.Stringjava.lang.Integer)
instead oforg.example.MyClass.myMethod(java.lang.String,java.lang.Integer)
.The text was updated successfully, but these errors were encountered: