From e1e9aa1ad5045fcf0a43a4b59f6425d2b980ce34 Mon Sep 17 00:00:00 2001 From: Simone Bordet Date: Fri, 24 Feb 2012 00:45:40 +0100 Subject: [PATCH] Simplified Handler by removing the context parameter from failed(). --- .../src/main/java/org/eclipse/jetty/spdy/StandardStream.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java b/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java index 54087918aa2..8e4838d2752 100644 --- a/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java +++ b/spdy-core/src/main/java/org/eclipse/jetty/spdy/StandardStream.java @@ -286,7 +286,7 @@ public class StandardStream implements IStream catch (StreamException x) { logger.debug("Could not send reply on stream " + this, x); - handler.failed(x, null); + handler.failed(x); session.rst(new RstInfo(getId(), x.getStreamStatus())); } } @@ -327,7 +327,7 @@ public class StandardStream implements IStream catch (StreamException x) { logger.debug("Could not send headers on stream " + this, x); - handler.failed(x, null); + handler.failed(x); session.rst(new RstInfo(getId(), x.getStreamStatus())); } }