Skip to content

Commit 6c6f565

Browse files
authored
Merge pull request #52 from sanmibuh/issue-51
[issue-51]: HttpURLConnectionClient line fix
2 parents 8509682 + f9508cf commit 6c6f565

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/adyen/httpclient/HttpURLConnectionClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ private static String getResponseBody(InputStream responseStream)
6161
throws IOException {
6262
//\A is the beginning of the stream boundary
6363
Scanner scanner = new Scanner(responseStream, CHARSET);
64-
scanner.useDelimiter("\\A");
6564
String rBody = scanner.useDelimiter("\\A").next();
6665
scanner.close();
6766
responseStream.close();

0 commit comments

Comments
 (0)