summaryrefslogtreecommitdiffstats
path: root/jdisc_core
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
parentb9408860c807b06824e9eb58d40a369d8632ff06 (diff)
Nonfunctional, changes only
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/Request.java6
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/handler/ResponseHandler.java8
2 files changed, 6 insertions, 8 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/Request.java b/jdisc_core/src/main/java/com/yahoo/jdisc/Request.java
index 25194a5502a..e0292bbe026 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/Request.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/Request.java
@@ -123,13 +123,11 @@ public class Request extends AbstractResource {
/**
* Returns the Uniform Resource Identifier used by the {@link Container} to resolve the appropriate {@link
- * RequestHandler} for this Request
+ * RequestHandler} for this Request.
*
* @see #setUri(URI)
*/
- public URI getUri() {
- return uri;
- }
+ public URI getUri() { return uri; }
/**
* Sets the Uniform Resource Identifier used by the {@link Container} to resolve the appropriate {@link
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);