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 a9228d76b0b5e6db1af08eb927b4c62197baf4c6 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon Dec 23 08:13:01 2024 -0500 Javadoc: Add missing comment --- .../commons/compress/archivers/jar/JarArchiveOutputStream.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.java b/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.java index de04d7e72..f372c02a0 100644 --- a/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.java @@ -34,6 +34,11 @@ public class JarArchiveOutputStream extends ZipArchiveOutputStream { private boolean jarMarkerAdded; + /** + * Constructs a new instance that wraps the output stream. + * + * @param out the output stream to wrap. + */ public JarArchiveOutputStream(final OutputStream out) { super(out); }