Details
-
Improvement
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
0.16.0
-
None
-
None
Description
Code does
sb.append("foo" + n)
which corresponds to
sb.append(new StringBuffer("foo").append.toString())
patch fixes this.