Skip to content

Commit

Permalink
remove responseArrive() invocation in ChannelResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
t-horikawa committed May 16, 2024
1 parent f677490 commit 1e04611
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ private boolean isResultSetReady() {
// get call from a thread that has received the response
void setMainResponse(@Nonnull ByteBuffer response) {
Objects.requireNonNull(response);
responseArrive();
try {
main.set(skipFrameworkHeader(response));
} catch (IOException | ServerException e) {
Expand All @@ -254,7 +253,6 @@ void setMainResponse(@Nonnull ByteBuffer response) {
}
public void setMainResponse(@Nonnull IOException exception) {
Objects.requireNonNull(exception);
responseArrive();
exceptionMain.set(exception);
}

Expand Down

0 comments on commit 1e04611

Please sign in to comment.