Skip to content

Commit

Permalink
StringBuffer to StringBuilder (yinwang0#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxu0 authored and Yin Wang committed Sep 10, 2018
1 parent 0750a7a commit 5759ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/yinwang/pysonar/$.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public static String moduleName(String path) {

@NotNull
public static String arrayToString(@NotNull Collection<String> strings) {
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
for (String s : strings) {
sb.append(s).append("\n");
}
Expand Down

0 comments on commit 5759ed4

Please sign in to comment.