Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 89477 invoked from network); 31 Jan 2003 12:35:19 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 31 Jan 2003 12:35:18 -0000 Received: (qmail 20137 invoked by uid 97); 31 Jan 2003 12:36:43 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@nagoya.betaversion.org Received: (qmail 20130 invoked from network); 31 Jan 2003 12:36:43 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 31 Jan 2003 12:36:43 -0000 Received: (qmail 89162 invoked by uid 500); 31 Jan 2003 12:35:14 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 89146 invoked by uid 500); 31 Jan 2003 12:35:13 -0000 Received: (qmail 89142 invoked from network); 31 Jan 2003 12:35:13 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 31 Jan 2003 12:35:13 -0000 Received: (qmail 52359 invoked by uid 1146); 31 Jan 2003 12:35:13 -0000 Date: 31 Jan 2003 12:35:13 -0000 Message-ID: <20030131123513.52358.qmail@icarus.apache.org> From: bodewig@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs CallTarget.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 bodewig 2003/01/31 04:35:13 Modified: src/main/org/apache/tools/ant/taskdefs Tag: ANT_15_BRANCH CallTarget.java Log: merge fix for bug 16618 from HEAD Revision Changes Path No revision No revision 1.21.2.3 +3 -3 jakarta-ant/src/main/org/apache/tools/ant/taskdefs/CallTarget.java Index: CallTarget.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/CallTarget.java,v retrieving revision 1.21.2.2 retrieving revision 1.21.2.3 diff -u -r1.21.2.2 -r1.21.2.3 --- CallTarget.java 5 Jul 2002 11:36:08 -0000 1.21.2.2 +++ CallTarget.java 31 Jan 2003 12:35:13 -0000 1.21.2.3 @@ -1,7 +1,7 @@ /* * The Apache Software License, Version 1.1 * - * Copyright (c) 2000-2002 The Apache Software Foundation. All rights + * Copyright (c) 2000-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -177,7 +177,7 @@ * * @since Ant 1.5 */ - protected void handleOutput(String line) { + public void handleOutput(String line) { if (callee != null) { callee.handleOutput(line); } else { @@ -190,7 +190,7 @@ * * @since Ant 1.5 */ - protected void handleErrorOutput(String line) { + public void handleErrorOutput(String line) { if (callee != null) { callee.handleErrorOutput(line); } else { --------------------------------------------------------------------- To unsubscribe, e-mail: ant-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: ant-dev-help@jakarta.apache.org