Skip to content

Commit

Permalink
fix checkstyle errors
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Dec 13, 2023
1 parent 9de9925 commit b2efaa2
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ private class SizeLimitResponseWrapper extends Response.Wrapper
private final HttpFields.Mutable _httpFields;
private long _written = 0;

public SizeLimitResponseWrapper(Request request, Response wrapped) {
public SizeLimitResponseWrapper(Request request, Response wrapped)
{
super(request, wrapped);

_httpFields = new HttpFields.Mutable.Wrapper(wrapped.getHeaders())
Expand All @@ -130,7 +131,8 @@ public HttpField onAddField(HttpField field)
}

@Override
public HttpFields.Mutable getHeaders() {
public HttpFields.Mutable getHeaders()
{
return _httpFields;
}

Expand Down

0 comments on commit b2efaa2

Please sign in to comment.