diff --git a/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java b/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java index f401424e7..1cb9bc5d6 100755 --- a/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java +++ b/src/main/org/apache/tools/ant/util/ConcatFileInputStream.java @@ -28,7 +28,7 @@ import org.apache.tools.ant.ProjectComponent; import org.apache.tools.ant.Task; /** - * Special InputStream that will + * Special InputStream that will * concatenate the contents of an array of files. */ public class ConcatFileInputStream extends InputStream { @@ -41,9 +41,9 @@ public class ConcatFileInputStream extends InputStream { private ProjectComponent managingPc; /** - * Construct a new ConcatFileInputStream - * with the specified File[]. - * @param file File[]. + * Construct a new ConcatFileInputStream + * with the specified File[]. + * @param file File[]. * @throws IOException if I/O errors occur. */ public ConcatFileInputStream(File[] file) throws IOException { @@ -67,18 +67,18 @@ public class ConcatFileInputStream extends InputStream { } /** - * Set a managing Task for - * this ConcatFileInputStream. - * @param task the managing Task. + * Set a managing Task for + * this ConcatFileInputStream. + * @param task the managing Task. */ public void setManagingTask(Task task) { setManagingComponent(task); } /** - * Set a managing Task for - * this ConcatFileInputStream. - * @param task the managing Task. + * Set a managing Task for + * this ConcatFileInputStream. + * @param task the managing Task. */ public void setManagingComponent(ProjectComponent pc) { this.managingPc = pc; @@ -86,8 +86,8 @@ public class ConcatFileInputStream extends InputStream { /** * 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) {