From 746224b88a8cd1bfc11361be0611e5b0d58a9f92 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Thu, 26 May 2005 19:52:45 +0000 Subject: [PATCH] Javadoc (fixing my uppercase code tags!) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278366 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/ant/util/OutputStreamFunneler.java | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main/org/apache/tools/ant/util/OutputStreamFunneler.java b/src/main/org/apache/tools/ant/util/OutputStreamFunneler.java index 177d0c0d7..fdf12ebed 100755 --- a/src/main/org/apache/tools/ant/util/OutputStreamFunneler.java +++ b/src/main/org/apache/tools/ant/util/OutputStreamFunneler.java @@ -21,7 +21,7 @@ import java.io.IOException; import java.io.OutputStream; /** - * Manages a set of OutputStreams to + * Manages a set of OutputStreams to * write to a single underlying stream, which is * closed only when the last "funnel" * has been closed. @@ -82,20 +82,20 @@ public class OutputStreamFunneler { private long timeoutMillis; /** - * Create a new OutputStreamFunneler for - * the specified OutputStream. - * @param out OutputStream. + * Create a new OutputStreamFunneler for + * the specified OutputStream. + * @param out OutputStream. */ public OutputStreamFunneler(OutputStream out) { this(out, DEFAULT_TIMEOUT_MILLIS); } /** - * Create a new OutputStreamFunneler for - * the specified OutputStream, with the + * Create a new OutputStreamFunneler for + * the specified OutputStream, with the * specified timeout value. - * @param out OutputStream. - * @param timeoutMillis long. + * @param out OutputStream. + * @param timeoutMillis long. * @see #setTimeout(long) */ public OutputStreamFunneler(OutputStream out, long timeoutMillis) { @@ -109,21 +109,21 @@ public class OutputStreamFunneler { } /** - * Set the timeout for this OutputStreamFunneler. + * Set the timeout for this OutputStreamFunneler. * This is the maximum time that may elapse between the closure * of the last "funnel" and the next call to - * getOutputStream() without closing the + * getOutputStream() without closing the * underlying stream. - * @param timeoutMillis long timeout value. + * @param timeoutMillis long timeout value. */ public synchronized void setTimeout(long timeoutMillis) { this.timeoutMillis = timeoutMillis; } /** - * Get a "funnel" OutputStream instance to - * write to this OutputStreamFunneler's underlying - * OutputStream. + * Get a "funnel" OutputStream instance to + * write to this OutputStreamFunneler's underlying + * OutputStream. * @return OutputStream. * @throws IOException if unable to create the funnel. */