Fixed compilation issue after merge.
This commit is contained in:
parent
28b9a0927c
commit
fbf7679e34
|
@ -68,10 +68,16 @@ public class HttpChannelOverHTTP2 extends HttpChannel
|
|||
public boolean abort(Throwable cause)
|
||||
{
|
||||
boolean sendAborted = sender.abort(cause);
|
||||
boolean receiveAborted = receiver.abort(cause);
|
||||
boolean receiveAborted = abortResponse(cause);
|
||||
return sendAborted || receiveAborted;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean abortResponse(Throwable cause)
|
||||
{
|
||||
return receiver.abort(cause);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void exchangeTerminated(Result result)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue