We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8509682 + f9508cf commit 6c6f565Copy full SHA for 6c6f565
src/main/java/com/adyen/httpclient/HttpURLConnectionClient.java
@@ -61,7 +61,6 @@ private static String getResponseBody(InputStream responseStream)
61
throws IOException {
62
//\A is the beginning of the stream boundary
63
Scanner scanner = new Scanner(responseStream, CHARSET);
64
- scanner.useDelimiter("\\A");
65
String rBody = scanner.useDelimiter("\\A").next();
66
scanner.close();
67
responseStream.close();
0 commit comments