Skip to content

Commit 1ffd2e0

Browse files
author
Stephen Colebourne
committed
Fix javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@385117 13f79535-47bb-0310-9956-ffa450edef68
1 parent c752b56 commit 1ffd2e0

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

src/java/org/apache/commons/io/IOUtils.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -514,9 +514,8 @@ public static List readLines(Reader input) throws IOException {
514514
* <code>LineIterator</code> holds a reference to the open
515515
* <code>Reader</code> specified here. When you have finished with the
516516
* iterator you should close the reader to free internal resources.
517-
* This can be done by closing the reader directly, or by calling the
518-
* {@link #close()} or {@link #closeQuietly(LineIterator)} method on
519-
* the iterator.
517+
* This can be done by closing the reader directly, or by calling
518+
* {@link LineIterator#close()} or {@link LineIterator#closeQuietly(LineIterator)}.
520519
* <p>
521520
* The recommended usage pattern is:
522521
* <pre>
@@ -546,10 +545,9 @@ public static LineIterator lineIterator(Reader reader) {
546545
* <p>
547546
* <code>LineIterator</code> holds a reference to the open
548547
* <code>InputStream</code> specified here. When you have finished with
549-
* the iterator you should close the reader to free internal resources.
550-
* This can be done by closing the reader directly, or by calling the
551-
* {@link #close()} or {@link #closeQuietly(LineIterator)} method on
552-
* the iterator.
548+
* the iterator you should close the stream to free internal resources.
549+
* This can be done by closing the stream directly, or by calling
550+
* {@link LineIterator#close()} or {@link LineIterator#closeQuietly(LineIterator)}.
553551
* <p>
554552
* The recommended usage pattern is:
555553
* <pre>

0 commit comments

Comments
 (0)