jskeet 02/04/24 03:55:50
Modified: src/main/org/apache/tools/ant/filters BaseFilterReader.java
Log:
Doh - use @exception, not @throws
Revision Changes Path
1.5 +4 -2
jakarta-ant/src/main/org/apache/tools/ant/filters/BaseFilterReader.java
Index: BaseFilterReader.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/filters/BaseFilterReader.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- BaseFilterReader.java 24 Apr 2002 09:42:29 -0000 1.4
+++ BaseFilterReader.java 24 Apr 2002 10:55:50 -0000 1.5
@@ -200,7 +200,8 @@
* @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 @@
*
* @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);
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>