Skip to content

Commit

Permalink
Backport #9635 since I've moved JandexUtil into AsmUtil
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed May 27, 2020
1 parent 96c703b commit 4cb2354
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public static Type[] getParameterTypes(String methodDescriptor) {
String binaryName = argsSignature.substring(i + 1, end);
// arrays take the entire signature
if (dimensions > 0) {
args.add(Type.create(DotName.createSimple(argsSignature.substring(start, end + 1)), Kind.ARRAY));
args.add(Type.create(DotName.createSimple(argsSignature.substring(start, end + 1).replace('/', '.')), Kind.ARRAY));
dimensions = 0;
} else {
// class names take only the binary name
Expand Down

0 comments on commit 4cb2354

Please sign in to comment.