Wrappers are started when added to the Context (since the Context is already starting...
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 12 May 2010 22:32:22 +0000 (22:32 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 12 May 2010 22:32:22 +0000 (22:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@943726 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/core/StandardContext.java

index 3869e05..2cca32f 100644 (file)
@@ -4630,12 +4630,6 @@ public class StandardContext extends ContainerBase
                 // Notify our interested LifecycleListeners
                 fireLifecycleEvent(Lifecycle.CONFIGURE_START_EVENT, null);
                 
-                // Start our child containers, if any
-                Container children[] = findChildren();
-                for (int i = 0; i < children.length; i++) {
-                    children[i].start();
-                }
-
                 // Start the Valves in our pipeline (including the basic),
                 // if any
                 if (pipeline instanceof Lifecycle) {