Skip to content

Commit f9508cf

Browse files
author
David Belmez
committed
[issue-51]: HttpURLConnectionClient line fix
1 parent 8509682 commit f9508cf

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)