Skip to content
This repository has been archived by the owner on Jan 3, 2019. It is now read-only.

Commit

Permalink
Fix RequestSpec override
Browse files Browse the repository at this point in the history
  • Loading branch information
hyleung committed Aug 6, 2018
1 parent 19f15c1 commit 834bfd7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ public RequestSpec maxContentLength(int numBytes) {

@Override
public RequestSpec responseMaxChunkSize(final int numBytes) {
return null;
this.delegate.responseMaxChunkSize(numBytes);
return this;
}

@Override
Expand Down

0 comments on commit 834bfd7

Please sign in to comment.