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.
1 parent c30b069 commit 8d4b486Copy full SHA for 8d4b486
src/main/java/com/box/sdk/BinaryBodyUtils.java
@@ -103,8 +103,8 @@ private static long getContentLengthFromAPIResponse(BoxAPIResponse response) {
103
try {
104
length = Long.parseLong(headerValue.trim());
105
} catch (NumberFormatException e) {
106
- throw new RuntimeException("Invalid content length: " + headerValue.trim() + "with: "
107
- + headerValue.trim().length() + "number of characters.");
+ throw new RuntimeException("Invalid content length: " + headerValue.trim() + " with: "
+ + headerValue.trim().length() + " number of characters.");
108
}
109
110
0 commit comments