Skip to content

Commit

Permalink
HttpSenderOptions.setDecompressionSupported should return HttpSenderO…
Browse files Browse the repository at this point in the history
…ptions

Follows-up on 9b15fd6

Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
  • Loading branch information
tsegismont committed Nov 9, 2023
1 parent 9b15fd6 commit 38cf05b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ public HttpSenderOptions setVerifyHost(boolean verifyHost) {
}

@Override
public HttpClientOptions setDecompressionSupported(boolean decompressionSupported) {
return super.setDecompressionSupported(decompressionSupported);
public HttpSenderOptions setDecompressionSupported(boolean decompressionSupported) {
return (HttpSenderOptions) super.setDecompressionSupported(decompressionSupported);
}

@Override
Expand Down

0 comments on commit 38cf05b

Please sign in to comment.