From 755b1bda3b041f1a294f05ae68d95890515ce248 Mon Sep 17 00:00:00 2001 From: Etzelia Date: Wed, 3 Oct 2018 22:43:29 -0500 Subject: [PATCH] Fixed HTTP POSTs Final form fields were given an extra line-feed at the end --- src/main/java/xyz/etztech/core/web/MultipartUtility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/xyz/etztech/core/web/MultipartUtility.java b/src/main/java/xyz/etztech/core/web/MultipartUtility.java index a2ec448..70f4ce5 100644 --- a/src/main/java/xyz/etztech/core/web/MultipartUtility.java +++ b/src/main/java/xyz/etztech/core/web/MultipartUtility.java @@ -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();