From 8585c04348f7bcd37e4352c604723d74c3a43c95 Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Wed, 24 Apr 2002 10:55:50 +0000 Subject: [PATCH] Doh - use @exception, not @throws git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272565 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/filters/BaseFilterReader.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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);