Skip to content

Commit

Permalink
Applying changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed May 3, 2024
1 parent ebe653e commit d610dd7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ public void earlyEOF()
HttpStreamOverHTTP1 stream = _stream.get();
if (stream != null)
{
HttpEofException bad = new HttpEofException("Early EOF");
HttpEofException bad = new HttpEofException();
Content.Chunk chunk = stream._chunk;

if (Content.Chunk.isFailure(chunk))
Expand Down Expand Up @@ -1647,9 +1647,9 @@ public EndPoint getEndPoint()
*/
private static class HttpEofException extends EofException implements HttpException
{
private HttpEofException(String message)
private HttpEofException()
{
super(message);
super("Early EOF");
}

@Override
Expand Down

0 comments on commit d610dd7

Please sign in to comment.