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 b626dc945 Comment: Fix spelling
new 832f89977 Javadoc
new a5ad42cd6 Lambda is an expression
new cd53b72a4 Javadoc
new 73d9faf74 Javadoc
new c873adc94 Change package-private constructor to private
new 21939d009 Add IOIterable
new 0af0d178a Two TeeWriterTest methods test the wrong class
new 935fb384a ReversedLinesFileReader implements IOIterable<String>
new 44b355fca Merge branch 'master' of
https://gitbox.apache.org/repos/asf/commons-io.git
The 9 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 | 2 +
.../org/apache/commons/io/function/IOIterable.java | 62 +++++++++++++++++
.../commons/io/function/IOIteratorAdapter.java | 2 +-
...kedIOIterator.java => UncheckedIOIterable.java} | 24 +++----
.../commons/io/function/UncheckedIOIterator.java | 5 +-
.../io/function/UncheckedIOSpliterator.java | 3 +-
.../commons/io/input/ReversedLinesFileReader.java | 59 ++++++++++++++--
.../AbstractConditionalFileFilterTest.java | 4 +-
.../apache/commons/io/function/IOIterableTest.java | 79 ++++++++++++++++++++++
.../ReversedLinesFileReaderParamBlockSizeTest.java | 20 +++---
.../ReversedLinesFileReaderParamFileTest.java | 14 +---
.../apache/commons/io/output/TeeWriterTest.java | 4 +-
12 files changed, 227 insertions(+), 51 deletions(-)
create mode 100644 src/main/java/org/apache/commons/io/function/IOIterable.java
copy src/main/java/org/apache/commons/io/function/{UncheckedIOIterator.java =>
UncheckedIOIterable.java} (70%)
create mode 100644
src/test/java/org/apache/commons/io/function/IOIterableTest.java