Return-Path: Delivered-To: apmail-avalon-cvs-archive@www.apache.org Received: (qmail 17159 invoked from network); 21 Jan 2004 14:16:54 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 21 Jan 2004 14:16:54 -0000 Received: (qmail 27731 invoked by uid 500); 21 Jan 2004 14:16:50 -0000 Delivered-To: apmail-avalon-cvs-archive@avalon.apache.org Received: (qmail 27666 invoked by uid 500); 21 Jan 2004 14:16:50 -0000 Mailing-List: contact cvs-help@avalon.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 cvs@avalon.apache.org Received: (qmail 27653 invoked from network); 21 Jan 2004 14:16:50 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 21 Jan 2004 14:16:50 -0000 Received: (qmail 17105 invoked by uid 1438); 21 Jan 2004 14:16:53 -0000 Date: 21 Jan 2004 14:16:53 -0000 Message-ID: <20040121141653.17104.qmail@minotaur.apache.org> From: mcconnell@apache.org To: avalon-cvs@apache.org Subject: cvs commit: avalon/merlin/composition/api/src/java/org/apache/avalon/composition/event CompositionEvent.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N mcconnell 2004/01/21 06:16:53 Modified: merlin/composition/api/src/java/org/apache/avalon/composition/event CompositionEvent.java Log: Improve string representation of a composition event. Revision Changes Path 1.4 +4 -4 avalon/merlin/composition/api/src/java/org/apache/avalon/composition/event/CompositionEvent.java Index: CompositionEvent.java =================================================================== RCS file: /home/cvs/avalon/merlin/composition/api/src/java/org/apache/avalon/composition/event/CompositionEvent.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CompositionEvent.java 13 Jan 2004 11:41:24 -0000 1.3 +++ CompositionEvent.java 21 Jan 2004 14:16:53 -0000 1.4 @@ -93,10 +93,10 @@ public String toString() { - return "composition-event: [source: [" + return "composition-event: [source: " + getContainmentModel() - + "], child: [" + + ", child: " + getChild() - + "]]"; + + "]"; } } --------------------------------------------------------------------- To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org For additional commands, e-mail: cvs-help@avalon.apache.org