remm 02/02/17 00:26:02
Modified: catalina/src/share/org/apache/catalina/startup
ClassLoaderFactory.java
Log:
- Forgot to remove obsolete javadocs.
Revision Changes Path
1.8 +12 -16 jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/ClassLoaderFactory.java
Index: ClassLoaderFactory.java
===================================================================
RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/ClassLoaderFactory.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ClassLoaderFactory.java 17 Feb 2002 08:23:19 -0000 1.7
+++ ClassLoaderFactory.java 17 Feb 2002 08:26:02 -0000 1.8
@@ -1,7 +1,7 @@
/*
- * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/ClassLoaderFactory.java,v
1.7 2002/02/17 08:23:19 remm Exp $
- * $Revision: 1.7 $
- * $Date: 2002/02/17 08:23:19 $
+ * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/ClassLoaderFactory.java,v
1.8 2002/02/17 08:26:02 remm Exp $
+ * $Revision: 1.8 $
+ * $Date: 2002/02/17 08:26:02 $
*
* ====================================================================
*
@@ -81,18 +81,16 @@
* <ul>
* <li>A set of directories containing unpacked classes (and resources)
* that should be included in the class loader's
- * repositories, <strong>unless</strong> a trigger class (see below)
- * is discovered in that directory.</li>
+ * repositories.</li>
* <li>A set of directories containing classes and resources in JAR files.
* Each readable JAR file discovered in these directories will be
- * added to the class loader's repositories, <strong>unless</strong> a
- * trigger class (see below) is discovered in that directory.</li>
+ * added to the class loader's repositories.</li>
* <li><code>ClassLoader</code> instance that should become the parent
of
* the new class loader.</li>
* </ul>
*
* @author Craig R. McClanahan
- * @version $Revision: 1.7 $ $Date: 2002/02/17 08:23:19 $
+ * @version $Revision: 1.8 $ $Date: 2002/02/17 08:26:02 $
*/
public final class ClassLoaderFactory {
@@ -140,13 +138,11 @@
* 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 unless they contain
- * one of the trigger classes, or <code>null</code> for no unpacked
- * directories to be considered
+ * 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 unless
- * they contain one of the trigger classes, or <code>null</code> for no
- * directories of JAR files to be considered
+ * 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.
*
@@ -163,7 +159,7 @@
// Construct the "class path" for this class loader
ArrayList list = new ArrayList();
- // Add unpacked directories that do not contain trigger classes
+ // Add unpacked directories
if (unpacked != null) {
for (int i = 0; i < unpacked.length; i++) {
File file = unpacked[i];
@@ -177,7 +173,7 @@
}
}
- // Add packed directory JAR files that do not contain trigger classes
+ // Add packed directory JAR files
if (packed != null) {
for (int i = 0; i < packed.length; i++) {
File directory = packed[i];
--
To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@jakarta.apache.org>
|