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 c55f6380 Use builder (fix) new 4cb04246 Format tweak new bdb9f8b9 Use builder and deprecate some ctors new b9300808 Pickup Maven enforcer plugin from parent POM new 53507ac6 Javadoc new 55b6211b Remove unused new method new 1cc2913e Remove unused new method new dba4132f Use builder and Javadoc The 7 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: pom.xml | 52 +------ src/main/java/org/apache/commons/io/IOUtils.java | 2 +- .../apache/commons/io/build/AbstractOrigin.java | 53 ++++++- .../commons/io/build/AbstractOriginSupplier.java | 24 ++-- .../commons/io/build/AbstractStreamBuilder.java | 13 -- .../apache/commons/io/input/BOMInputStream.java | 5 + .../io/input/BufferedFileChannelInputStream.java | 38 ++--- .../io/input/MemoryMappedFileInputStream.java | 23 +-- .../input/MessageDigestCalculatingInputStream.java | 5 + .../io/input/RandomAccessFileInputStream.java | 5 + .../commons/io/input/ReadAheadInputStream.java | 5 + .../apache/commons/io/input/ReaderInputStream.java | 5 + .../commons/io/input/ReversedLinesFileReader.java | 5 + .../java/org/apache/commons/io/input/Tailer.java | 5 + .../commons/io/input/UncheckedBufferedReader.java | 5 + .../io/input/UncheckedFilterInputStream.java | 44 ++++-- .../commons/io/input/UncheckedFilterReader.java | 49 +++++-- .../io/input/UnixLineEndingInputStream.java | 49 +++---- .../input/UnsynchronizedBufferedInputStream.java | 139 +++++++++++------- .../input/UnsynchronizedByteArrayInputStream.java | 106 ++++++++++++-- .../io/input/UnsynchronizedFilterInputStream.java | 69 +++++++-- .../apache/commons/io/input/XmlStreamReader.java | 5 + .../io/output/AbstractByteArrayOutputStream.java | 7 +- .../commons/io/output/FileWriterWithEncoding.java | 5 + .../commons/io/output/LockableFileWriter.java | 5 + .../io/output/UncheckedFilterOutputStream.java | 9 +- .../commons/io/output/UncheckedFilterWriter.java | 49 +++++-- .../UnsynchronizedByteArrayOutputStream.java | 60 +++++++- .../commons/io/output/WriterOutputStream.java | 7 +- .../apache/commons/io/output/XmlStreamWriter.java | 5 + .../io/input/MemoryMappedFileInputStreamTest.java | 34 +++-- .../io/input/UncheckedFilterInputStreamTest.java | 16 ++- .../io/input/UncheckedFilterReaderTest.java | 21 +-- .../UnsynchronizedBufferedInputStreamTest.java | 22 +-- .../UnsynchronizedByteArrayInputStreamTest.java | 156 ++++++++++++--------- .../input/UnsynchronizedFilterInputStreamTest.java | 8 +- .../io/output/UncheckedFilterWriterTest.java | 6 +- 37 files changed, 749 insertions(+), 367 deletions(-)