Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Boes committed Aug 12, 2021
1 parent 914448c commit 5fdccc3
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.net.URI;
import java.util.Map;

/**
* This class encapsulates a HTTP request received and a
Expand Down Expand Up @@ -86,7 +85,7 @@ protected HttpExchange() {
* values will be a {@link java.util.List} of
* {@linkplain java.lang.String Strings} containing each value that was
* included in the request, in the order they were included. Header fields
* appearing on multiple lines are represented as multiple string values.
* appearing multiple times are represented as multiple string values.
*
* <p>The keys in {@code Headers} are case-insensitive.
*
Expand All @@ -112,21 +111,21 @@ protected HttpExchange() {
public abstract Headers getResponseHeaders();

/**
* Get the request {@link URI}.
* Returns the request {@link URI}.
*
* @return the request {@code URI}
*/
public abstract URI getRequestURI();

/**
* Get the request method.
* Returns the request method.
*
* @return the request method
*/
public abstract String getRequestMethod();

/**
* Get the {@link HttpContext} for this exchange.
* Returns the {@link HttpContext} for this exchange.
*
* @return the {@code HttpContext}
*/
Expand Down

0 comments on commit 5fdccc3

Please sign in to comment.