From 9a60819e52d8c1a79c93ec57660be6afde346bf8 Mon Sep 17 00:00:00 2001 From: markt Date: Sun, 25 Apr 2010 11:26:29 +0000 Subject: [PATCH] Fix leftover bug from changing the design git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@937781 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/catalina/startup/ContextConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/catalina/startup/ContextConfig.java b/java/org/apache/catalina/startup/ContextConfig.java index 96abe5f2d..16574e312 100644 --- a/java/org/apache/catalina/startup/ContextConfig.java +++ b/java/org/apache/catalina/startup/ContextConfig.java @@ -1358,7 +1358,7 @@ public class ContextConfig if (types != null) { for (Class type : types) { Set scis = - typeInitializerMap.get(type.getCanonicalName()); + typeInitializerMap.get(type); if (scis == null) { scis = new HashSet(); typeInitializerMap.put(type, scis); -- 2.11.0