60
60
package jdk .internal .org .objectweb .asm ;
61
61
62
62
import java .lang .reflect .Constructor ;
63
- import java .lang .reflect .InvocationTargetException ;
64
63
import java .lang .reflect .Method ;
65
- import java .lang .reflect .Modifier ;
66
64
67
65
/**
68
66
* A Java field or method type. This class can be used to make it easier to manipulate type and
@@ -337,8 +335,7 @@ public static Type[] getArgumentTypes(final String methodDescriptor) {
337
335
while (methodDescriptor .charAt (currentOffset ) == '[' ) {
338
336
currentOffset ++;
339
337
}
340
- char c = methodDescriptor .charAt (currentOffset ++);
341
- if (c == 'L' || c == 'Q' ) {
338
+ if (methodDescriptor .charAt (currentOffset ++) == 'L' ) {
342
339
// Skip the argument descriptor content.
343
340
int semiColumnOffset = methodDescriptor .indexOf (';' , currentOffset );
344
341
currentOffset = Math .max (currentOffset , semiColumnOffset + 1 );
@@ -357,8 +354,7 @@ public static Type[] getArgumentTypes(final String methodDescriptor) {
357
354
while (methodDescriptor .charAt (currentOffset ) == '[' ) {
358
355
currentOffset ++;
359
356
}
360
- char c = methodDescriptor .charAt (currentOffset ++);
361
- if (c == 'L' || c == 'Q' ) {
357
+ if (methodDescriptor .charAt (currentOffset ++) == 'L' ) {
362
358
// Skip the argument descriptor content.
363
359
int semiColumnOffset = methodDescriptor .indexOf (';' , currentOffset );
364
360
currentOffset = Math .max (currentOffset , semiColumnOffset + 1 );
@@ -429,8 +425,7 @@ static int getReturnTypeOffset(final String methodDescriptor) {
429
425
while (methodDescriptor .charAt (currentOffset ) == '[' ) {
430
426
currentOffset ++;
431
427
}
432
- char c = methodDescriptor .charAt (currentOffset ++);
433
- if (c == 'L' || c == 'Q' ) {
428
+ if (methodDescriptor .charAt (currentOffset ++) == 'L' ) {
434
429
// Skip the argument descriptor content.
435
430
int semiColumnOffset = methodDescriptor .indexOf (';' , currentOffset );
436
431
currentOffset = Math .max (currentOffset , semiColumnOffset + 1 );
@@ -473,7 +468,6 @@ private static Type getTypeInternal(
473
468
case '[' :
474
469
return new Type (ARRAY , descriptorBuffer , descriptorBegin , descriptorEnd );
475
470
case 'L' :
476
- case 'Q' :
477
471
return new Type (OBJECT , descriptorBuffer , descriptorBegin + 1 , descriptorEnd - 1 );
478
472
case '(' :
479
473
return new Type (METHOD , descriptorBuffer , descriptorBegin , descriptorEnd );
@@ -679,14 +673,10 @@ private static void appendDescriptor(final Class<?> clazz, final StringBuilder s
679
673
}
680
674
stringBuilder .append (descriptor );
681
675
} else {
682
- stringBuilder .append (isPrimitiveClass ( currentClass ) ? 'Q' : 'L' ).append (getInternalName (currentClass )).append (';' );
676
+ stringBuilder .append ('L' ).append (getInternalName (currentClass )).append (';' );
683
677
}
684
678
}
685
679
686
- static boolean isPrimitiveClass (Class <?> clazz ) {
687
- return (clazz .getModifiers () & Opcodes .ACC_PRIMITIVE ) != 0 ;
688
- }
689
-
690
680
// -----------------------------------------------------------------------------------------------
691
681
// Methods to get the sort, dimension, size, and opcodes corresponding to a Type or descriptor.
692
682
// -----------------------------------------------------------------------------------------------
@@ -780,8 +770,7 @@ public static int getArgumentsAndReturnSizes(final String methodDescriptor) {
780
770
while (methodDescriptor .charAt (currentOffset ) == '[' ) {
781
771
currentOffset ++;
782
772
}
783
- char c = methodDescriptor .charAt (currentOffset ++);
784
- if (c == 'L' || c == 'Q' ) {
773
+ if (methodDescriptor .charAt (currentOffset ++) == 'L' ) {
785
774
// Skip the argument descriptor content.
786
775
int semiColumnOffset = methodDescriptor .indexOf (';' , currentOffset );
787
776
currentOffset = Math .max (currentOffset , semiColumnOffset + 1 );
0 commit comments