Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
Signed-off-by: Terry Quigley <terry.quigley@sas.com>
  • Loading branch information
terryquigleysas committed Apr 20, 2024
1 parent de4f361 commit aa18974
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public static class HttpResponse {
public HttpResponse(SimpleHttpResponse inner) throws IllegalStateException, IOException {
super();
this.inner = inner;
if (inner.getBody() == null) { // head request does not have a entity
if (inner.getBody() == null) { // head request does not have an entity
this.body = "";
} else {
this.body = inner.getBodyText();
Expand Down

0 comments on commit aa18974

Please sign in to comment.