Author: markt Date: Mon Jun 8 20:25:34 2009 New Revision: 782770 URL: http://svn.apache.org/viewvc?rev=782770&view=rev Log: Remove a deprecated method
Modified: tomcat/trunk/java/org/apache/catalina/ssi/SSIServletRequestUtil.java Modified: tomcat/trunk/java/org/apache/catalina/ssi/SSIServletRequestUtil.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ssi/SSIServletRequestUtil.java?rev=782770&r1=782769&r2=782770&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/ssi/SSIServletRequestUtil.java (original) +++ tomcat/trunk/java/org/apache/catalina/ssi/SSIServletRequestUtil.java Mon Jun 8 20:25:34 2009 @@ -50,22 +50,4 @@ return RequestUtil.normalize(result); } - - /** - * Return a context-relative path, beginning with a "/", that represents - * the canonical version of the specified path after ".." and "." elements - * are resolved out. If the specified path attempts to go outside the - * boundaries of the current context (i.e. too many ".." path elements are - * present), return <code>null</code> instead. This normalize should be - * the same as DefaultServlet.normalize, which is almost the same ( see - * source code below ) as RequestUtil.normalize. Do we need all this - * duplication? - * - * @param path - * Path to be normalized - * @deprecated - */ - public static String normalize(String path) { - return RequestUtil.normalize(path); - } } \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org