8252127: Optimize sun.invoke.util.BytecodeDescriptor.unparse
Reviewed-by: mchung, rriggs
This commit is contained in:
parent
fe8439f0d4
commit
9d00332ee5
@ -110,9 +110,7 @@ public class BytecodeDescriptor {
|
|||||||
} else if (type == int.class) {
|
} else if (type == int.class) {
|
||||||
return "I";
|
return "I";
|
||||||
}
|
}
|
||||||
StringBuilder sb = new StringBuilder();
|
return type.descriptorString();
|
||||||
unparseSig(type, sb);
|
|
||||||
return sb.toString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String unparse(MethodType type) {
|
public static String unparse(MethodType type) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user