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 91bcfcc Bump mockito-core from 3.5.15 to 3.6.0 (#167) new 5af063a Bump mockito-core from 3.5.15 to 3.6.0 #167. new 5180712 [IO-510] Add and adapt ReadAheadInputStream and BufferedFileChannelInputStream from Apache Spark. new d3a5177 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-io.git 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 | 5 +- .../io/input/BufferedFileChannelInputStream.java | 243 ++++++++++++ .../commons/io/input/ReadAheadInputStream.java | 437 +++++++++++++++++++++ .../commons/io/input/AbstractInputStreamTest.java | 164 ++++++++ .../BufferedFileChannelInputStreamTest.java} | 41 +- .../commons/io/input/ReadAheadInputStreamTest.java | 49 +++ 6 files changed, 914 insertions(+), 25 deletions(-) create mode 100644 src/main/java/org/apache/commons/io/input/BufferedFileChannelInputStream.java create mode 100644 src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java create mode 100644 src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java copy src/test/java/org/apache/commons/io/{test/ThrowOnCloseInputStream.java => input/BufferedFileChannelInputStreamTest.java} (52%) create mode 100644 src/test/java/org/apache/commons/io/input/ReadAheadInputStreamTest.java