Author: markt Date: Fri Feb 11 15:27:06 2011 New Revision: 1069835 URL: http://svn.apache.org/viewvc?rev=1069835&view=rev Log: Remove unused deprecated method
Modified: tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java Modified: tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java?rev=1069835&r1=1069834&r2=1069835&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java (original) +++ tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java Fri Feb 11 15:27:06 2011 @@ -389,27 +389,6 @@ public class ExpandWar { /** - * Expand the specified input stream into the specified directory, creating - * a file named from the specified relative path. - * - * @param input InputStream to be copied - * @param docBase Document base directory into which we are expanding - * @param name Relative pathname of the file to be created - * @return A handle to the expanded File - * - * @exception IOException if an input/output error occurs - * - * @deprecated - */ - protected static File expand(InputStream input, File docBase, String name) - throws IOException { - File file = new File(docBase, name); - expand(input, file); - return file; - } - - - /** * Expand the specified input stream into the specified file. * * @param input InputStream to be copied --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org