Fixed HTTP POSTs

Final form fields were given an extra line-feed at the end
pull/2/head
Etzelia 2018-10-03 22:43:29 -05:00
parent 159d233fc5
commit 755b1bda3b
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public class MultipartUtility {
public String finish() throws IOException {
StringBuilder response = new StringBuilder();
writer.append(LINE_FEED).flush();
//writer.append(LINE_FEED).flush();
writer.append("--" + boundary + "--").append(LINE_FEED);
writer.close();