yoavs 2004/05/26 09:02:59
Modified: catalina/src/share/org/apache/catalina/servlets
CGIServlet.java
Log:
Minor JavaDoc fixes (Bugzilla 28335)
Revision Changes Path
1.20 +11 -11
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets/CGIServlet.java
Index: CGIServlet.java
===================================================================
RCS file:
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets/CGIServlet.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- CGIServlet.java 22 Apr 2004 20:48:16 -0000 1.19
+++ CGIServlet.java 26 May 2004 16:02:59 -0000 1.20
@@ -914,7 +914,7 @@
* Constructs the CGI environment to be supplied to the invoked CGI
* script; relies heavliy on Servlet API methods and findCGI
*
- * @param HttpServletRequest request associated with the CGI
+ * @param req request associated with the CGI
* invokation
*
* @return true if environment was set OK, false if there
@@ -1305,7 +1305,7 @@
/**
* Converts null strings to blank strings ("")
*
- * @param string to be converted if necessary
+ * @param s string to be converted if necessary
* @return a non-null string, either the original or the empty string
* ("") if the original was <code>null</code>
*/
@@ -1318,8 +1318,8 @@
/**
* Converts null strings to another string
*
- * @param string to be converted if necessary
- * @param string to return instead of a null string
+ * @param couldBeNull string to be converted if necessary
+ * @param subForNulls string to return instead of a null string
* @return a non-null string, either the original or the substitute
* string if the original was <code>null</code>
*/
@@ -1333,8 +1333,8 @@
/**
* Converts blank strings to another string
*
- * @param string to be converted if necessary
- * @param string to return instead of a blank string
+ * @param couldBeBlank string to be converted if necessary
+ * @param subForBlanks string to return instead of a blank string
* @return a non-null string, either the original or the substitute
* string if the original was <code>null</code> or empty ("")
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]