Fixed compilation issue after merge.

This commit is contained in:
Simone Bordet 2015-02-15 20:52:19 +01:00
parent 28b9a0927c
commit fbf7679e34
1 changed files with 7 additions and 1 deletions

View File

@ -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)
{