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 6f866726c46c1acff82f5f0f829cf6ab9636bd2a
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 21 17:56:09 2025 -0500

    Javadoc
---
 .../commons/compress/archivers/jar/JarArchiveInputStream.java     | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.java
 
b/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.java
index e95f45f1f..15c36c83b 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.java
@@ -47,6 +47,14 @@ public class JarArchiveInputStream extends 
ZipArchiveInputStream {
      * @since 1.29.0
      */
     public static class Builder extends 
ZipArchiveInputStream.AbstractBuilder<JarArchiveInputStream, Builder> {
+
+        /**
+         * Constructs a new instance.
+         */
+        public Builder() {
+            // Default constructor
+        }
+
         @Override
         public JarArchiveInputStream get() throws IOException {
             return new JarArchiveInputStream(this);

Reply via email to