mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 08:24:13 +00:00
ClassFileMethodMetadata's toString() formatted method parameter types as packageName() + "." + displayName(). Since ClassDesc.packageName() is empty for primitive, array and default-package types, these rendered with a leading dot (for example ".int" and ".String[]") and reference arrays lost their package. The return type already uses ClassFileAnnotationMetadata.resolveTypeName(); apply it to the parameters as well. Signed-off-by: junhyeong9812 <pickjog@gmail.com>