-
Enhancement
-
Resolution: Done
-
Optional
-
None
-
None
-
None
Replace all instances of redundant StringBuilder append String.subString with append CharSequence
Both the following samples produce the same output:
buffer.append(str.substring(startIndex, endIndex)); buffer.append(str, startIndex, endIndex);
This minor enhancement removes an intermediate String construction during append