You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
The ASM
Frame
class buildstypeDescriptor
strings using aStringBuilder
. It turns out that almost all descriptors are bigger than StringBuilder's default size of 16. Increasing the default size to 32 means that thatAbstractStringBuilder.ensureCapacityInternal
doesn't need to callArrays.copyOf
as often.The text was updated successfully, but these errors were encountered: