Return-Path: Delivered-To: apmail-jakarta-avalon-cvs-archive@apache.org Received: (qmail 99191 invoked from network); 20 Feb 2002 15:06:41 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 20 Feb 2002 15:06:41 -0000 Received: (qmail 4704 invoked by uid 97); 20 Feb 2002 15:06:42 -0000 Delivered-To: qmlist-jakarta-archive-avalon-cvs@jakarta.apache.org Received: (qmail 4623 invoked by uid 97); 20 Feb 2002 15:06:41 -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 4537 invoked by uid 97); 20 Feb 2002 15:06:40 -0000 Date: 20 Feb 2002 15:06:39 -0000 Message-ID: <20020220150639.30821.qmail@icarus.apache.org> From: leif@apache.org To: jakarta-avalon-excalibur-cvs@apache.org Subject: cvs commit: jakarta-avalon-excalibur/src/test/org/apache/avalon/excalibur/component/test ExcaliburComponentManagerTestCase.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 leif 02/02/20 07:06:39 Modified: src/test/org/apache/avalon/excalibur/component/test ExcaliburComponentManagerTestCase.java Log: Make field references more specific to work with the javac compiler. Jikes was fine. Revision Changes Path 1.3 +5 -5 jakarta-avalon-excalibur/src/test/org/apache/avalon/excalibur/component/test/ExcaliburComponentManagerTestCase.java Index: ExcaliburComponentManagerTestCase.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/src/test/org/apache/avalon/excalibur/component/test/ExcaliburComponentManagerTestCase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ExcaliburComponentManagerTestCase.java 20 Feb 2002 09:33:09 -0000 1.2 +++ ExcaliburComponentManagerTestCase.java 20 Feb 2002 15:06:39 -0000 1.3 @@ -39,7 +39,7 @@ * it is correctly handling component lifestyle management. * * @author Ryan Shaw - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public class ExcaliburComponentManagerTestCase extends TestCase { @@ -115,7 +115,7 @@ return suite; } - private void managerLifecycle(Class momClass, Class dadClass, Class kidClass) + protected void managerLifecycle(Class momClass, Class dadClass, Class kidClass) throws Exception { Configuration emptyConfig = new DefaultConfiguration( "", "" ); @@ -224,7 +224,7 @@ public void dispose() { super.dispose(); - m_manager.release( m_kid ); + AbstractGoodParent.this.m_manager.release( m_kid ); } } @@ -360,8 +360,8 @@ { super.dispose(); - m_manager.release( m_mom ); - m_manager.release( m_dad ); + AbstractGoodCircularKid.this.m_manager.release( m_mom ); + AbstractGoodCircularKid.this.m_manager.release( m_dad ); } } -- To unsubscribe, e-mail: For additional commands, e-mail: