mbenson 2005/03/29 15:21:34 Modified: src/main/org/apache/tools/ant/util Tag: ANT_16_BRANCH ConcatFileInputStream.java Log: Sync Revision Changes Path No revision No revision 1.1.2.4 +12 -12 ant/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java Index: ConcatFileInputStream.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -r1.1.2.3 -r1.1.2.4 --- ConcatFileInputStream.java 4 Feb 2005 08:13:47 -0000 1.1.2.3 +++ ConcatFileInputStream.java 29 Mar 2005 23:21:34 -0000 1.1.2.4 @@ -28,7 +28,7 @@ import org.apache.tools.ant.Task; /** - * Special <CODE>InputStream</CODE> that will + * Special <code>InputStream</code> that will * concatenate the contents of an array of files. */ public class ConcatFileInputStream extends InputStream { @@ -41,9 +41,9 @@ private ProjectComponent managingPc; /** - * Construct a new <CODE>ConcatFileInputStream</CODE> - * with the specified <CODE>File[]</CODE>. - * @param file <CODE>File[]</CODE>. + * Construct a new <code>ConcatFileInputStream</code> + * with the specified <code>File[]</code>. + * @param file <code>File[]</code>. * @throws IOException if I/O errors occur. */ public ConcatFileInputStream(File[] file) throws IOException { @@ -67,18 +67,18 @@ } /** - * Set a managing <CODE>Task</CODE> for - * this <CODE>ConcatFileInputStream</CODE>. - * @param task the managing <CODE>Task</CODE>. + * Set a managing <code>Task</code> for + * this <code>ConcatFileInputStream</code>. + * @param task the managing <code>Task</code>. */ public void setManagingTask(Task task) { setManagingComponent(task); } /** - * Set a managing <CODE>Task</CODE> for - * this <CODE>ConcatFileInputStream</CODE>. - * @param task the managing <CODE>Task</CODE>. + * Set a managing <code>Task</code> for + * this <code>ConcatFileInputStream</code>. + * @param task the managing <code>Task</code>. */ public void setManagingComponent(ProjectComponent pc) { this.managingPc = pc; @@ -86,8 +86,8 @@ /** * Log a message with the specified logging level. - * @param message the <CODE>String</CODE> message. - * @param loglevel the <CODE>int</CODE> logging level. + * @param message the <code>String</code> message. + * @param loglevel the <code>int</code> logging level. */ public void log(String message, int loglevel) { if (managingPc != null) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]