Skip to content

Commit

Permalink
Fixed HttpServletResponseAdapterImpl setStatus method to call correct…
Browse files Browse the repository at this point in the history
… delegate method

Signed-off-by: Doug Hoard <doug.hoard@gmail.com>
  • Loading branch information
dhoard authored and fstab committed Jun 6, 2022
1 parent 2be241c commit 7c9fc39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private static class HttpServletResponseAdapterImpl implements HttpServletRespon

@Override
public void setStatus(int httpStatusCode) {
delegate.setBufferSize(httpStatusCode);
delegate.setStatus(httpStatusCode);
}

@Override
Expand Down

0 comments on commit 7c9fc39

Please sign in to comment.