luehe 2004/06/10 11:44:29 Modified: catalina/src/share/org/apache/catalina/startup Embedded.java Log: Removed redundant PropertyChangeSupport instance var and related methods, which are inherited from superclass Revision Changes Path 1.15 +1 -31 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Embedded.java Index: Embedded.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/Embedded.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- Embedded.java 10 Jun 2004 01:09:03 -0000 1.14 +++ Embedded.java 10 Jun 2004 18:44:28 -0000 1.15 @@ -217,11 +217,6 @@ */ protected boolean await = false; - /** - * The property change support for this component. - */ - protected PropertyChangeSupport support = new PropertyChangeSupport(this); - // ------------------------------------------------------------- Properties @@ -430,18 +425,6 @@ /** - * Add a property change listener to this component. - * - * @param listener The listener to add - */ - public void addPropertyChangeListener(PropertyChangeListener listener) { - - support.addPropertyChangeListener(listener); - - } - - - /** * Create, configure, and return a new TCP/IP socket connector * based on the specified properties. * @@ -819,19 +802,6 @@ if( log.isDebugEnabled() ) log.debug(" Removing this Host"); host.getParent().removeChild(host); - - } - - - - /** - * Remove a property change listener from this component. - * - * @param listener The listener to remove - */ - public void removePropertyChangeListener(PropertyChangeListener listener) { - - support.removePropertyChangeListener(listener); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]