Refactored calls to _transport.abort() to call this.abort().

This commit is contained in:
Simone Bordet 2017-08-07 10:31:36 +02:00
parent 28babcf619
commit 7b437cd647
1 changed files with 3 additions and 3 deletions

View File

@ -372,7 +372,7 @@ public class HttpChannel implements Runnable, HttpOutput.Interceptor
{
if (LOG.isDebugEnabled())
LOG.debug("Could not perform Error Dispatch because the response is already committed, aborting");
_transport.abort(ex);
abort(ex);
}
else
{
@ -858,14 +858,14 @@ public class HttpChannel implements Runnable, HttpOutput.Interceptor
@Override
public void failed(Throwable th)
{
_transport.abort(x);
abort(x);
super.failed(x);
}
});
}
else
{
_transport.abort(x);
abort(x);
super.failed(x);
}
}