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
Our heavily used StringUtils.replace implementation temporarily allocates String instances from String.substring calls which can easily be avoided by using the corresponding StringBuilder.append variants.
Our heavily used
StringUtils.replaceimplementation temporarily allocatesStringinstances fromString.substringcalls which can easily be avoided by using the correspondingStringBuilder.appendvariants.