Add TODOs as per discussion on dev list
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 14 Nov 2009 02:48:19 +0000 (02:48 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 14 Nov 2009 02:48:19 +0000 (02:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@836102 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/ContextConfig.java
java/org/apache/jasper/compiler/TldLocationsCache.java

index 7724f39..f5fdc34 100644 (file)
@@ -188,9 +188,10 @@ public class ContextConfig
     private static HashSet<String> noFragmentJars;
     
     /*
-     * Initializes the set of JARs that are known not to contain any TLDs
+     * Initializes the set of JARs that are known not to contain any web-fragments
      */
     static {
+        // TODO - set this list via configuration (also TLDs in Jasper) 
         noFragmentJars = new HashSet<String>();
         // Bootstrap JARs
         noFragmentJars.add("bootstrap.jar");
index 2dd5ca8..226892d 100644 (file)
@@ -119,6 +119,7 @@ public class TldLocationsCache {
      * Initializes the set of JARs that are known not to contain any TLDs
      */
     static {
+        // TODO - set this list via configuration (also web-fragments) 
         noTldJars = new HashSet<String>();
         // Bootstrap JARs
         noTldJars.add("bootstrap.jar");