diff --git a/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java b/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java
index 58b037e0c74..582ed54ba83 100644
--- a/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java
+++ b/spdy-core/src/main/java/org/eclipse/jetty/spdy/Promise.java
@@ -38,7 +38,7 @@ public class Promise
Instances of this class capture a context that is made available on completion - * and failure callbacks.
+ *Instances of this class capture a context that is made available on the completion callback.
* * @paramCallback invoked when the operation completes.
* * @param context the context - * @see #failed(Throwable, Object) + * @see #failed(Throwable) */ public abstract void completed(C context); @@ -37,9 +36,8 @@ public interface HandlerCallback invoked when the operation fails.
* * @param x the reason for the operation failure - * @param context the context */ - public void failed(Throwable x, C context); + public void failed(Throwable x); /** *Empty implementation of {@link Handler}
@@ -54,7 +52,7 @@ public interface Handler