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-compress.git
from 3d2dbdd8b (doc) Added support for gzip extra subfields. (#604) new 648d50951 Sort members new 5a46298d0 Make SubField instance variable private and final The 2 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: .../commons/compress/compressors/gzip/Extra.java | 227 --------------------- .../gzip/GzipCompressorInputStream.java | 4 +- .../gzip/GzipCompressorOutputStream.java | 4 +- .../compress/compressors/gzip/GzipParameters.java | 15 +- .../compressors/gzip/HeaderExtraField.java | 187 +++++++++++++++++ .../archivers/tar/TarArchiveInputStreamTest.java | 114 +++++------ .../gzip/GzipCompressorOutputStreamTest.java | 103 +++++----- 7 files changed, 303 insertions(+), 351 deletions(-) delete mode 100644 src/main/java/org/apache/commons/compress/compressors/gzip/Extra.java create mode 100644 src/main/java/org/apache/commons/compress/compressors/gzip/HeaderExtraField.java