Simplified Handler by removing the context parameter from failed().

This commit is contained in:
Simone Bordet 2012-02-24 00:46:32 +01:00
parent e1e9aa1ad5
commit 7be63d7f76
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public class SPDYAsyncConnection extends AbstractConnection implements AsyncConn
catch (Exception x)
{
close(false);
handler.failed(x, context);
handler.failed(x);
}
finally
{