Closed
Description
The ASM Frame
class builds typeDescriptor
strings using a StringBuilder
. It turns out that almost all descriptors are bigger than StringBuilder's default size of 16. Increasing the default size to 32 means that that AbstractStringBuilder.ensureCapacityInternal
doesn't need to call Arrays.copyOf
as often.