Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 98468 invoked from network); 9 Jun 2005 21:46:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Jun 2005 21:46:40 -0000 Received: (qmail 51731 invoked by uid 500); 9 Jun 2005 21:46:35 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 51647 invoked by uid 500); 9 Jun 2005 21:46:35 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 51611 invoked by uid 500); 9 Jun 2005 21:46:34 -0000 Received: (qmail 51590 invoked by uid 99); 9 Jun 2005 21:46:34 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 09 Jun 2005 14:46:33 -0700 Received: (qmail 98325 invoked by uid 1818); 9 Jun 2005 21:46:30 -0000 Date: 9 Jun 2005 21:46:30 -0000 Message-ID: <20050609214630.98324.qmail@minotaur.apache.org> From: mbenson@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/util LeadPipeInputStream.java X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N mbenson 2005/06/09 14:46:30 Modified: src/main/org/apache/tools/ant/util LeadPipeInputStream.java Log: s/CODE/code in javadoc HTML Revision Changes Path 1.5 +18 -18 ant/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java Index: LeadPipeInputStream.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- LeadPipeInputStream.java 4 Feb 2005 08:08:59 -0000 1.4 +++ LeadPipeInputStream.java 9 Jun 2005 21:46:30 -0000 1.5 @@ -26,22 +26,22 @@ import org.apache.tools.ant.Project; /** - * Special PipedInputStream that will not die - * when the writing Thread is no longer alive. + * Special PipedInputStream that will not die + * when the writing Thread is no longer alive. * @since Ant 1.6.2 */ public class LeadPipeInputStream extends PipedInputStream { private ProjectComponent managingPc; /** - * Construct a new LeadPipeInputStream. + * Construct a new LeadPipeInputStream. */ public LeadPipeInputStream() { super(); } /** - * Construct a new LeadPipeInputStream + * Construct a new LeadPipeInputStream * with the specified buffer size. * @param size the size of the circular buffer. */ @@ -51,9 +51,9 @@ } /** - * Construct a new LeadPipeInputStream to pull - * from the specified PipedOutputStream. - * @param src the PipedOutputStream source. + * Construct a new LeadPipeInputStream to pull + * from the specified PipedOutputStream. + * @param src the PipedOutputStream source. * @throws IOException if unable to construct the stream. */ public LeadPipeInputStream(PipedOutputStream src) throws IOException { @@ -61,10 +61,10 @@ } /** - * Construct a new LeadPipeInputStream to pull - * from the specified PipedOutputStream, using a + * Construct a new LeadPipeInputStream to pull + * from the specified PipedOutputStream, using a * circular buffer of the specified size. - * @param src the PipedOutputStream source. + * @param src the PipedOutputStream source. * @param size the size of the circular buffer. */ public LeadPipeInputStream(PipedOutputStream src, int size) throws IOException { @@ -114,18 +114,18 @@ } /** - * Set a managing Task for - * this LeadPipeInputStream. - * @param task the managing Task. + * Set a managing Task for + * this LeadPipeInputStream. + * @param task the managing Task. */ public void setManagingTask(Task task) { setManagingComponent(task); } /** - * Set a managing ProjectComponent for - * this LeadPipeInputStream. - * @param pc the managing ProjectComponent. + * Set a managing ProjectComponent for + * this LeadPipeInputStream. + * @param pc the managing ProjectComponent. */ public void setManagingComponent(ProjectComponent pc) { this.managingPc = pc; @@ -133,8 +133,8 @@ /** * Log a message with the specified logging level. - * @param message the String message. - * @param loglevel the int logging level. + * @param message the String message. + * @param loglevel the int logging level. */ public void log(String message, int loglevel) { if (managingPc != null) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org