rleland 2002/10/12 12:42:22
Modified: src/share/org/apache/struts/util RequestUtils.java
Log:
Remove unused parameter in a private method
of RequestUtils.
Revision Changes Path
1.56 +6 -9
jakarta-struts/src/share/org/apache/struts/util/RequestUtils.java
Index: RequestUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/util/RequestUtils.java,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- RequestUtils.java 11 Oct 2002 22:17:51 -0000 1.55
+++ RequestUtils.java 12 Oct 2002 19:42:22 -0000 1.56
@@ -914,7 +914,7 @@
}
// Obtain a MultipartRequestHandler
- MultipartRequestHandler multipartHandler = getMultipartHandler(request,
servlet);
+ MultipartRequestHandler multipartHandler = getMultipartHandler(request);
// Set the multipart request handler for our ActionForm.
// If the bean isn't an ActionForm, an exception would have been
@@ -987,9 +987,6 @@
*
* @param request The HTTP request for which the multipart handler should
* be found.
- * @param servlet The <code>ActionServletWrapper</code> processing the supplied
- * request.
- *
* @return the multipart handler to use, or <code>null</code> if none is
* found.
*
@@ -997,7 +994,7 @@
* to locate the multipart handler.
*/
private static MultipartRequestHandler getMultipartHandler(
- HttpServletRequest request, ActionServletWrapper servlet)
+ HttpServletRequest request)
throws ServletException {
MultipartRequestHandler multipartHandler = null;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>