Browse Source

Doh - use @exception, not @throws

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272565 13f79535-47bb-0310-9956-ffa450edef68
master
Jon Skeet 23 years ago
parent
commit
8585c04348
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/main/org/apache/tools/ant/filters/BaseFilterReader.java

+ 4
- 2
src/main/org/apache/tools/ant/filters/BaseFilterReader.java View File

@@ -200,7 +200,8 @@ public abstract class BaseFilterReader
* @return the line read, or <code>null</code> 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);


Loading…
Cancel
Save