Skip to content

Commit

Permalink
Private method does not throw checked exception
Browse files Browse the repository at this point in the history
- Remove those from the private method signatures
  • Loading branch information
garydgregory committed Aug 26, 2024
1 parent b280733 commit 054fb41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ private void consumeContinuationFrame(final RawFrame frame, final H2Stream strea
}
}

private void consumeSettingsFrame(final ByteBuffer payload) throws HttpException, IOException {
private void consumeSettingsFrame(final ByteBuffer payload) throws IOException {
final H2Config.Builder configBuilder = H2Config.initial();
while (payload.hasRemaining()) {
final int code = payload.getShort();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ boolean isOutputReady() {
}
}

void produceOutput() throws HttpException, IOException {
void produceOutput() throws IOException {
switch (responseState) {
case BODY:
exchangeHandler.produce(internalDataChannel);
Expand Down

0 comments on commit 054fb41

Please sign in to comment.