Return-Path: Delivered-To: apmail-jakarta-avalon-cvs-archive@apache.org Received: (qmail 78014 invoked from network); 8 Nov 2002 00:19:10 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 8 Nov 2002 00:19:10 -0000 Received: (qmail 16779 invoked by uid 97); 8 Nov 2002 00:20:12 -0000 Delivered-To: qmlist-jakarta-archive-avalon-cvs@jakarta.apache.org Received: (qmail 16763 invoked by uid 97); 8 Nov 2002 00:20:11 -0000 Mailing-List: contact avalon-cvs-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Avalon CVS List" Reply-To: "Avalon Developers List" Delivered-To: mailing list avalon-cvs@jakarta.apache.org Received: (qmail 16752 invoked by uid 97); 8 Nov 2002 00:20:11 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Date: 8 Nov 2002 00:19:04 -0000 Message-ID: <20021108001904.55643.qmail@icarus.apache.org> From: donaldp@apache.org To: jakarta-avalon-excalibur-cvs@apache.org Subject: cvs commit: jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler AbstractComponentHandler.java FactoryComponentHandler.java PerThreadComponentHandler.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N donaldp 2002/11/07 16:19:04 Modified: fortress/src/java/org/apache/excalibur/fortress/handler AbstractComponentHandler.java FactoryComponentHandler.java PerThreadComponentHandler.java Log: Remove null method implements and push it up to superclass. Revision Changes Path 1.21 +9 -3 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/AbstractComponentHandler.java Index: AbstractComponentHandler.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/AbstractComponentHandler.java,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- AbstractComponentHandler.java 8 Nov 2002 00:16:56 -0000 1.20 +++ AbstractComponentHandler.java 8 Nov 2002 00:19:04 -0000 1.21 @@ -189,8 +189,14 @@ m_initialized = true; } - protected abstract void doInitialize() - throws Exception; + /** + * Initialize the ComponentHandler. + * Subclasses should overide this to do their own initialization. + */ + protected void doInitialize() + throws Exception + { + } /** * Get a reference of the desired Component 1.30 +1 -9 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/FactoryComponentHandler.java Index: FactoryComponentHandler.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/FactoryComponentHandler.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- FactoryComponentHandler.java 8 Nov 2002 00:16:56 -0000 1.29 +++ FactoryComponentHandler.java 8 Nov 2002 00:19:04 -0000 1.30 @@ -85,14 +85,6 @@ } /** - * Initialize the ComponentHandler. - */ - protected void doInitialize() - throws Exception - { - } - - /** * Get a reference of the desired Component */ protected Object doGet() 1.33 +1 -6 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/PerThreadComponentHandler.java Index: PerThreadComponentHandler.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/PerThreadComponentHandler.java,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- PerThreadComponentHandler.java 8 Nov 2002 00:16:56 -0000 1.32 +++ PerThreadComponentHandler.java 8 Nov 2002 00:19:04 -0000 1.33 @@ -88,11 +88,6 @@ setInstrumentableName( "PerThreadComponentHandler" ); } - protected void doInitialize() - throws Exception - { - } - /** * Get a reference of the desired Component */ -- To unsubscribe, e-mail: For additional commands, e-mail: