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
To slightly improve performance, we should use StringBuilder.append(char) instead of StringBuilder.append(String) whenever we append a single character to the builder.
To slightly improve performance, this commit switches to
StringBuilder.append(char) instead of StringBuilder.append(String)
whenever we append a single character to a StringBuilder.
Closesspring-projectsgh-27098
To slightly improve performance, we should use
StringBuilder.append(char)
instead ofStringBuilder.append(String)
whenever we append a single character to the builder.See also: #25056
The text was updated successfully, but these errors were encountered: