summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java')
-rw-r--r--container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java10
1 files changed, 3 insertions, 7 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java b/container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java
index 592cbff8440..6ed467a465c 100644
--- a/container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java
+++ b/container-core/src/main/java/com/yahoo/container/jdisc/AsyncHttpResponse.java
@@ -32,13 +32,9 @@ public abstract class AsyncHttpResponse extends HttpResponse {
* output (using the provided channel and completion handler) when (async)
* rendering is completed.
*
- * @param output
- * the stream to which content should be rendered
- * @param networkChannel
- * the channel which must be closed on completion
- * @param handler
- * the completion handler to submit when closing the channel, may
- * be null
+ * @param output the stream to which content should be rendered
+ * @param networkChannel the channel which must be closed on completion
+ * @param handler the completion handler to submit when closing the channel, may be null
*/
public abstract void render(OutputStream output, ContentChannel networkChannel, CompletionHandler handler)
throws IOException;