Skip to content

Commit c934886

Browse files
author
Niall Pemberton
committed
Add @Version to javadocs
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@587913 13f79535-47bb-0310-9956-ffa450edef68
1 parent fb24a47 commit c934886

6 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/java/org/apache/commons/io/input/AutoCloseInputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* closing the stream when no longer needed) or the underlying stream (by not
3232
* releasing resources once the last byte has been read) do not do that.
3333
*
34+
* @version $Id$
3435
* @since Commons IO 1.4
3536
*/
3637
public class AutoCloseInputStream extends ProxyInputStream {

src/java/org/apache/commons/io/input/CloseShieldInputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* passed to a component that wants to explicitly close the stream even if
2626
* more input would still be available to other components.
2727
*
28+
* @version $Id$
2829
* @since Commons IO 1.4
2930
*/
3031
public class CloseShieldInputStream extends ProxyInputStream {

src/java/org/apache/commons/io/input/ClosedInputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* that accept input streams and acting as a sentinel value instead of a
2727
* <code>null</code> input stream.
2828
*
29+
* @version $Id$
2930
* @since Commons IO 1.4
3031
*/
3132
public class ClosedInputStream extends InputStream {

src/java/org/apache/commons/io/input/TeeInputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* called on this proxy. It is configurable whether the associated output
3232
* stream will also closed.
3333
*
34+
* @version $Id$
3435
* @since Commons IO 1.4
3536
*/
3637
public class TeeInputStream extends ProxyInputStream {

src/java/org/apache/commons/io/output/CloseShieldOutputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* passed to a component that wants to explicitly close the stream even if
2626
* other components would still use the stream for output.
2727
*
28+
* @version $Id$
2829
* @since Commons IO 1.4
2930
*/
3031
public class CloseShieldOutputStream extends ProxyOutputStream {

src/java/org/apache/commons/io/output/ClosedOutputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* that accept an output stream and acting as a sentinel value instead of
2828
* a <code>null</code> output stream.
2929
*
30+
* @version $Id$
3031
* @since Commons IO 1.4
3132
*/
3233
public class ClosedOutputStream extends OutputStream {

0 commit comments

Comments
 (0)