Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
x7airworker committed Sep 6, 2023
2 parents 1449117 + 8d5e0d9 commit 29f9f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/javawebstack/httpclient/HTTPRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class HTTPRequest {
private Map<String, String[]> responseHeaders = new HashMap<>();
private final List<HttpCookie> requestCookies = new ArrayList<>();
private final List<HttpCookie> responseCookies = new ArrayList<>();
private byte[] responseBody;
private byte[] responseBody = new byte[0];
private int status;
private String statusMessage;
private boolean executed;
Expand Down

0 comments on commit 29f9f38

Please sign in to comment.