Replace instances of StringBuffer with StringBuilder

This commit is contained in:
Federico Bond
2014-08-25 00:06:32 -03:00
parent f6611eddf1
commit 768c72e4e8
26 changed files with 129 additions and 147 deletions

View File

@@ -1224,7 +1224,7 @@ public class JSONArray {
*/
public String join(String separator) {
int len = this.size();
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
for (int i = 0; i < len; i += 1) {
if (i > 0) {