Skip to content

Commit 42b0805

Browse files
matzewjfarcand
authored andcommitted
fixing compile error from 900a8da
1 parent 5785dfa commit 42b0805

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/ning/http/client/RequestBuilderBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,14 +293,14 @@ public String toString() {
293293

294294
sb.append("\t");
295295
sb.append(method);
296-
sb.append("\theaders:"
296+
sb.append("\theaders:");
297297
for (String name : headers.keySet()) {
298298
sb.append("\t");
299299
sb.append(name);
300300
sb.append(":");
301301
sb.append(headers.getJoinedValue(name, ", "));
302302
}
303-
sb.append("\tparams:"
303+
sb.append("\tparams:");
304304
for (String name : params.keySet()) {
305305
sb.append("\t");
306306
sb.append(name);

0 commit comments

Comments
 (0)