Register and deregister Executors in JMX
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Sep 2010 21:39:16 +0000 (21:39 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Sep 2010 21:39:16 +0000 (21:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1003299 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/core/StandardThreadExecutor.java

index bc02f0b..f45f812 100644 (file)
@@ -94,8 +94,8 @@ public class StandardThreadExecutor extends LifecycleMBeanBase
     // ---------------------------------------------- Public Methods
     
     @Override
-    protected void initInternal() {
-        // NOOP
+    protected void initInternal() throws LifecycleException {
+        super.initInternal();
     }
 
     
@@ -139,8 +139,8 @@ public class StandardThreadExecutor extends LifecycleMBeanBase
 
     
     @Override
-    protected void destroyInternal() {
-        // NOOP
+    protected void destroyInternal() throws LifecycleException {
+        super.destroyInternal();
     }