From 5ce56d0606ebd01938ef91f83c615bdf47c90244 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Thu, 9 Jun 2005 21:46:30 +0000 Subject: [PATCH] s/CODE/code in javadoc HTML git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278413 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/ant/util/LeadPipeInputStream.java | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java b/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java index 1593abfd4..2b4166723 100755 --- a/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java +++ b/src/main/org/apache/tools/ant/util/LeadPipeInputStream.java @@ -26,22 +26,22 @@ import org.apache.tools.ant.Task; 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 @@ public class LeadPipeInputStream extends PipedInputStream { } /** - * 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 @@ public class LeadPipeInputStream extends PipedInputStream { } /** - * 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 @@ public class LeadPipeInputStream extends PipedInputStream { } /** - * 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 @@ public class LeadPipeInputStream extends PipedInputStream { /** * 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) {