diff --git a/src/main/org/apache/tools/ant/filters/BaseFilterReader.java b/src/main/org/apache/tools/ant/filters/BaseFilterReader.java index 25a354b68..bda99e083 100644 --- a/src/main/org/apache/tools/ant/filters/BaseFilterReader.java +++ b/src/main/org/apache/tools/ant/filters/BaseFilterReader.java @@ -200,7 +200,8 @@ public abstract class BaseFilterReader * @return the line read, or null if the end of the stream * has already been reached * - * @throws IOException if the underlying reader throws one during reading + * @exception IOException if the underlying reader throws one during + * reading */ protected final String readLine() throws IOException { int ch = in.read(); @@ -226,7 +227,8 @@ public abstract class BaseFilterReader * * @return the remaining contents of the reader, as a String * - * @throws IOException if the underlying reader throws one during reading + * @exception IOException if the underlying reader throws one during + * reading */ protected final String readFully() throws IOException { return FileUtils.readFully(in, 8192);