Skip to content

Commit

Permalink
proper use of StringBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
deki committed Nov 27, 2024
1 parent a8ac356 commit 199c757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public String getQueryString() {
for (String val : this.getMultiValueQueryStringParameters().get(key)) {
String separator = params.length() == 0 ? "?" : "&";

params.append(separator + key + "=" + val);
params.append(separator).append(key).append("=").append(val);
}
}

Expand Down

0 comments on commit 199c757

Please sign in to comment.