This is an automated email from the ASF dual-hosted git repository. ggregory pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
from fe6d3c934 Add CloseShieldInputStream.systemIn(InputStream) new 91de8ece1 Javadoc new 1040e74d4 AutoCloseInputStream(InputStream) uses ClosedInputStream.INSTANCE when its input is null new 2432b1b35 Add ClosedInputStreamTest#testAvailable() new 10d74fc18 Avoid NullPointerException in ProxyInputStream.available() when the underlying input stream is null new 0fd437d1d Add BoundedInputStreamTest.testAvailable() new 9e14f9604 BufferedFileChannelInputStream.available() returns 0 before any reads. new e0e69af62 BufferedFileChannelInputStream.available() should return 0 when the stream is closed instead of throwing an exception new 0b07ef383 CharSequenceInputStream.available() should return 0 after the stream is closed The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: src/changes/changes.xml | 6 +++++ .../commons/io/input/AutoCloseInputStream.java | 3 ++- .../io/input/BufferedFileChannelInputStream.java | 6 +++++ .../commons/io/input/CharSequenceInputStream.java | 2 +- .../commons/io/input/CloseShieldInputStream.java | 6 ++--- .../apache/commons/io/input/ClosedInputStream.java | 12 +++++++++- .../apache/commons/io/input/ProxyInputStream.java | 12 ++++++---- .../commons/io/input/AutoCloseInputStreamTest.java | 19 +++++++++++++++ .../commons/io/input/BoundedInputStreamTest.java | 12 ++++++++++ .../input/BufferedFileChannelInputStreamTest.java | 28 ++++++++++++++++++++++ .../io/input/CharSequenceInputStreamTest.java | 10 ++++++++ .../commons/io/input/ClosedInputStreamTest.java | 18 ++++++++++++++ .../commons/io/input/ProxyInputStreamTest.java | 28 +++++++++++++++++++++- 13 files changed, 150 insertions(+), 12 deletions(-)