Fix leftover bug from changing the design
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 25 Apr 2010 11:26:29 +0000 (11:26 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 25 Apr 2010 11:26:29 +0000 (11:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@937781 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/ContextConfig.java

index 96abe5f..16574e3 100644 (file)
@@ -1358,7 +1358,7 @@ public class ContextConfig
                 if (types != null) {
                     for (Class<?> type : types) {
                         Set<ServletContainerInitializer> scis =
-                            typeInitializerMap.get(type.getCanonicalName());
+                            typeInitializerMap.get(type);
                         if (scis == null) {
                             scis = new HashSet<ServletContainerInitializer>();
                             typeInitializerMap.put(type, scis);