aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/handler
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2020-06-24 13:11:00 +0200
committerJon Bratseth <bratseth@gmail.com>2020-06-24 13:11:00 +0200
commit9847afaf25500caf513b0183cfbcc22a6de58a80 (patch)
treee3c6a733cd82aa212325471bff48595ded416193 /jdisc_core/src/main/java/com/yahoo/jdisc/handler
parentb9408860c807b06824e9eb58d40a369d8632ff06 (diff)
Nonfunctional, changes only
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/handler')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/handler/ResponseHandler.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/ResponseHandler.java b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/ResponseHandler.java
index 9451191a31c..57d9402de5f 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/ResponseHandler.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/ResponseHandler.java
@@ -20,11 +20,11 @@ import com.yahoo.jdisc.service.ClientProvider;
public interface ResponseHandler {
/**
- * <p>This method will process the given {@link Response} and return a {@link ContentChannel} into which the caller
- * can write the Response's content.</p>
+ * This method will process the given {@link Response} and return a {@link ContentChannel} into which the caller
+ * can write the Response's content.
*
- * @param response The Response to handle.
- * @return The ContentChannel to write the Response content to. Notice that the ContentChannel holds a Container
+ * @param response the Response to handle
+ * @return the ContentChannel to write the Response content to. Notice that the ContentChannel holds a Container
* reference, so failure to close this will prevent the Container from ever shutting down.
*/
ContentChannel handleResponse(Response response);