View | Details | Raw Unified | Return to bug 37264
Collapse All | Expand All

(-)W:/app/eclipse/workspace/tomcat/container/catalina/src/share/org/apache/catalina/core/StandardContext.java (-3 / +4 lines)
Lines 4284-4289 Link Here
4284
        // Normal container shutdown processing
4284
        // Normal container shutdown processing
4285
        if (log.isDebugEnabled())
4285
        if (log.isDebugEnabled())
4286
            log.debug("Processing standard container shutdown");
4286
            log.debug("Processing standard container shutdown");
4287
4288
        // Stop our application listeners
4289
        listenerStop();
4290
4287
        // Notify our interested LifecycleListeners
4291
        // Notify our interested LifecycleListeners
4288
        lifecycle.fireLifecycleEvent(STOP_EVENT, null);
4292
        lifecycle.fireLifecycleEvent(STOP_EVENT, null);
4289
        started = false;
4293
        started = false;
Lines 4302-4310 Link Here
4302
                    ((Lifecycle) children[i]).stop();
4306
                    ((Lifecycle) children[i]).stop();
4303
            }
4307
            }
4304
4308
4305
            // Stop our application listeners
4306
            listenerStop();
4307
4308
            // Clear all application-originated servlet context attributes
4309
            // Clear all application-originated servlet context attributes
4309
            if (context != null)
4310
            if (context != null)
4310
                context.clearAttributes();
4311
                context.clearAttributes();

Return to bug 37264