Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 1325 invoked from network); 8 Jun 2009 20:25:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Jun 2009 20:25:47 -0000 Received: (qmail 59756 invoked by uid 500); 8 Jun 2009 20:25:58 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 59689 invoked by uid 500); 8 Jun 2009 20:25:58 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 59678 invoked by uid 99); 8 Jun 2009 20:25:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2009 20:25:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2009 20:25:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AAF8D23888E5; Mon, 8 Jun 2009 20:25:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r782770 - /tomcat/trunk/java/org/apache/catalina/ssi/SSIServletRequestUtil.java Date: Mon, 08 Jun 2009 20:25:34 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090608202534.AAF8D23888E5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 null 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-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org