Skip to content
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.

Commit

Permalink
Remove watermark, and add preposition where needed
Browse files Browse the repository at this point in the history
modified:   src/main/java/javax/servlet/http/HttpServletRequest.java

- Include "to" after "corresponding" as needed.

modified:   src/main/javadoc/javax.servlet-api.css

- Remove watermark.
  • Loading branch information
Ed Burns committed Jul 19, 2017
1 parent 8c36bee commit 8ecb128
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ nbactions.xml
.classpath
.project
.settings/
downloads/
27 changes: 13 additions & 14 deletions src/main/java/javax/servlet/http/HttpServletRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -264,24 +264,23 @@ public interface HttpServletRequest extends ServletRequest {
* obtain the {@link RequestDispatcher}. If the currently active
* {@code Servlet} invocation was obtained by a call to {@link
* ServletRequest#getRequestDispatcher} followed by a call to {@link
* RequestDispatcher#include}, the returned {@code HttpServletMapping}
* is the one corresponding to the path that caused the first {@code
* Servlet} in the invocation sequence to be invoked. If the
* currently active {@code Servlet} invocation was obtained by a
* call to {@link javax.servlet.AsyncContext#dispatch}, the returned
* {@code HttpServletMapping} is the one corresponding to the path that caused
* the first {@code Servlet} in the invocation sequence to be
* RequestDispatcher#include}, the returned {@code
* HttpServletMapping} is the one corresponding to the path that
* caused the first {@code Servlet} in the invocation sequence to be
* invoked. If the currently active {@code Servlet} invocation was
* obtained by a call to {@link
* javax.servlet.AsyncContext#dispatch}, the returned {@code
* HttpServletMapping} is the one corresponding to the path that
* caused the first {@code Servlet} in the invocation sequence to be
* invoked. See {@link
* javax.servlet.RequestDispatcher#FORWARD_MAPPING}, {@link
* javax.servlet.RequestDispatcher#INCLUDE_MAPPING} and {@link
* javax.servlet.AsyncContext#ASYNC_MAPPING} for additional request
* attributes related to {@code HttpServletMapping}.</p>
*
* <p>If the {@code Servlet} corresponding to this request was
* obtained using {@link
* javax.servlet.ServletContext#getNamedDispatcher}, the returned
* {@code HttpServletMapping} instance must have properties that
* reflect the mapping last applied to this request.</p>
* attributes related to {@code HttpServletMapping}. If the
* currently active {@code Servlet} invocation was obtained by a
* call to {@link javax.servlet.ServletContext#getNamedDispatcher},
* the returned {@code HttpServletMapping} is the one corresponding
* to the path for the mapping last applied to this request.</p>
*
* <p>The returned object is immutable. Servlet 4.0 compliant
* implementations must override this method.</p>
Expand Down
3 changes: 2 additions & 1 deletion src/main/javadoc/javax.servlet-api.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ Overall document style

@import url('resources/fonts/dejavu.css');

/* background: url(doc-files/expert-draft-bg.png); */

body {
background-color:#ffffff;
background: url(doc-files/expert-draft-bg.png);
color:#353833;
font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
font-size:14px;
Expand Down

0 comments on commit 8ecb128

Please sign in to comment.