Skip to content

Commit

Permalink
Issue jetty#4217 - Reverting debug output in IllegalStateException
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
  • Loading branch information
joakime committed Oct 30, 2019
1 parent c04997f commit a3f3612
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1039,10 +1039,7 @@ public boolean flush(ByteBuffer... appOuts) throws IOException
}
if (BufferUtil.isEmpty(_encryptedOutput))
{
throw new IllegalStateException(
String.format("Unexpected wrap result %s (packetBufferSize %d < getPacketBufferSize() %d)",
wrapResultStatus, packetBufferSize, getPacketBufferSize()
));
throw new IllegalStateException("Unexpected wrap result " + wrapResultStatus);
}
// fall-through default case to flush()
}
Expand Down

0 comments on commit a3f3612

Please sign in to comment.