Author: markt
Date: Thu Apr 16 10:07:07 2009
New Revision: 765555
URL: http://svn.apache.org/viewvc?rev=765555&view=rev
Log:
Remove unused method that introduced an additional parameter that was then
ignored.
Modified:
tomcat/trunk/java/org/apache/catalina/startup/ClassLoaderFactory.java
Modified: tomcat/trunk/java/org/apache/catalina/startup/ClassLoaderFactory.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/ClassLoaderFactory.java?rev=765555&r1=765554&r2=765555&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/startup/ClassLoaderFactory.java
(original)
+++ tomcat/trunk/java/org/apache/catalina/startup/ClassLoaderFactory.java Thu
Apr 16 10:07:07 2009
@@ -79,34 +79,6 @@
File packed[],
ClassLoader parent)
throws Exception {
- return createClassLoader(unpacked, packed, null, parent);
- }
-
-
- /**
- * Create and return a new class loader, based on the configuration
- * defaults and the specified directory paths:
- *
- * @param unpacked Array of pathnames to unpacked directories that should
- * be added to the repositories of the class loader, or <code>null</code>
- * for no unpacked directories to be considered
- * @param packed Array of pathnames to directories containing JAR files
- * that should be added to the repositories of the class loader,
- * or <code>null</code> for no directories of JAR files to be considered
- * @param urls Array of URLs to remote repositories, designing either JAR
- * resources or uncompressed directories that should be added to
- * the repositories of the class loader, or <code>null</code> for no
- * directories of JAR files to be considered
- * @param parent Parent class loader for the new class loader, or
- * <code>null</code> for the system class loader.
- *
- * @exception Exception if an error occurs constructing the class loader
- */
- public static ClassLoader createClassLoader(File unpacked[],
- File packed[],
- URL urls[],
- ClassLoader parent)
- throws Exception {
if (log.isDebugEnabled())
log.debug("Creating new class loader");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]