luehe 2004/03/16 14:18:13 Modified: util/java/org/apache/tomcat/util/http/mapper Mapper.java Log: Fix for Bugzilla 27664 ("Welcome files not found in combination with jsp-property-group") [cont.] Revision Changes Path 1.36 +7 -2 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/http/mapper/Mapper.java Index: Mapper.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/http/mapper/Mapper.java,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- Mapper.java 16 Mar 2004 19:24:59 -0000 1.35 +++ Mapper.java 16 Mar 2004 22:18:13 -0000 1.36 @@ -307,6 +307,11 @@ } + public void addWrapper(String path, Object wrapper, boolean jspWildCard) { + addWrapper(context, path, wrapper, jspWildCard); + } + + protected void addWrapper(Context context, String path, Object wrapper) { addWrapper(context, path, wrapper, false); } @@ -318,8 +323,8 @@ * @param context The context to which to add the wrapper * @param path Wrapper mapping * @param wrapper The Wrapper object - * @param jspWildCard true if the wrapper corresponds to the JspServlet, - * and the mapping path contains a wildcard + * @param jspWildCard true if the wrapper corresponds to the JspServlet + * and the mapping path contains a wildcard; false otherwise */ protected void addWrapper(Context context, String path, Object wrapper, boolean jspWildCard) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]