This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
commit c3f4fc410c4c098876dca98c364438a0b9133224 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Dec 28 17:30:19 2022 -0500 Format tweak --- .../apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java index 30e939ee..4d06d680 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java @@ -802,7 +802,7 @@ public class ZipArchiveOutputStream extends ArchiveOutputStream { final int len= CFH_FILENAME_OFFSET + nameLen + extraLength + commentLen; final byte[] buf = new byte[len]; - System.arraycopy(CFH_SIG, 0, buf, CFH_SIG_OFFSET, ZipConstants.WORD); + System.arraycopy(CFH_SIG, 0, buf, CFH_SIG_OFFSET, ZipConstants.WORD); // version made by // CheckStyle:MagicNumber OFF