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 b894d66c Port some test code from IO to NIO APIs new 7323c8b3 Javadoc new 1e7b2925 [IO-786] Add UnsynchronizedFilterInputStream new fb7d4b10 [IO-786] Add UnsynchronizedBufferedInputStream The 3 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 + .../input/UnsynchronizedBufferedInputStream.java | 375 ++++++++++++++++ .../input/UnsynchronizedByteArrayInputStream.java | 2 + .../io/input/UnsynchronizedFilterInputStream.java | 175 ++++++++ .../UnsynchronizedBufferedInputStreamTest.java | 484 +++++++++++++++++++++ .../input/UnsynchronizedFilterInputStreamTest.java | 175 ++++++++ 6 files changed, 1217 insertions(+) create mode 100644 src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java create mode 100644 src/main/java/org/apache/commons/io/input/UnsynchronizedFilterInputStream.java create mode 100644 src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java create mode 100644 src/test/java/org/apache/commons/io/input/UnsynchronizedFilterInputStreamTest.java