dannyc 01/07/13 15:17:52
Modified: src/share/javax/servlet/http HttpServletRequest.java
Log:
formatting change to close the table head tags in the javadoc comment for
getRequestURI(). It was confusing up the mif doclet & making it go all funny.
Revision Changes Path
1.4 +5 -5
jakarta-servletapi-4/src/share/javax/servlet/http/HttpServletRequest.java
Index: HttpServletRequest.java
===================================================================
RCS file:
/home/cvs/jakarta-servletapi-4/src/share/javax/servlet/http/HttpServletRequest.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- HttpServletRequest.java 2001/04/24 20:04:59 1.3
+++ HttpServletRequest.java 2001/07/13 22:17:51 1.4
@@ -494,17 +494,17 @@
* The web container does not decode this String.
* For example:
*
- * <blockquote>
+ *
+
* <table>
- * <tr align=left><th>First line of HTTP request<th>
- * <th>Returned Value
+ * <tr align=left><th>First line of HTTP request </th>
+ * <th> Returned Value</th>
* <tr><td>POST /some/path.html HTTP/1.1<td><td>/some/path.html
* <tr><td>GET http://foo.bar/a.html HTTP/1.0
* <td><td>/a.html
* <tr><td>HEAD /xyz?a=b HTTP/1.1<td><td>/xyz
* </table>
- * </blockquote>
- *
+ *
* <p>To reconstruct an URL with a scheme and host, use
* {@link HttpUtils#getRequestURL}.
*