--- CoyoteConnector.java.1	2003-02-12 14:13:07.000000000 -0800
+++ CoyoteConnector.java	2003-02-18 14:37:14.000000000 -0800
@@ -1127,21 +1138,6 @@
         lifecycle.fireLifecycleEvent(START_EVENT, null);
         started = true;
 
-// We can't register earlier - the JMX registration of this happens
-        // in Server.start callback
-        if( this.oname != null ) {
-            // We are registred - register the adapter as well.
-            try {
-                Registry.getRegistry().registerComponent(protocolHandler,
-                        this.domain, "protocolHandler",
-                        "type=protocolHandler,className=" + protocolHandlerClassName);
-            } catch( Exception ex ) {
-                ex.printStackTrace();
-            }
-        } else {
-            log( "Coyote can't register jmx for protocol");
-        }
-
         try {
             protocolHandler.start();
         } catch (Exception e) {
@@ -1177,33 +1173,5 @@
 
     }
 
-    protected String domain;
-    protected ObjectName oname;
-    protected MBeanServer mserver;
-
-    public ObjectName getObjectName() {
-        return oname;
-    }
-
-    public String getDomain() {
-        return domain;
-    }
-
-    public ObjectName preRegister(MBeanServer server,
-                                  ObjectName name) throws Exception {
-        oname=name;
-        mserver=server;
-        domain=name.getDomain();
-        return name;
-    }
-
-    public void postRegister(Boolean registrationDone) {
-    }
-
-    public void preDeregister() throws Exception {
-    }
-
-    public void postDeregister() {
-    }
 
 }
