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 0a92c440491ac6d426a26960b95168b51e5294e1 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon Dec 23 08:39:43 2024 -0500 Javadoc: Add missing comment --- .../apache/commons/compress/archivers/ar/ArArchiveOutputStream.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java b/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java index 34d36afac..90cc01592 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java @@ -49,6 +49,12 @@ public class ArArchiveOutputStream extends ArchiveOutputStream<ArArchiveEntry> { private boolean prevEntryOpen; private int longFileMode = LONGFILE_ERROR; + /** + * Constructs a new instance with the given backing OutputStream. + * + * @param out the underlying output stream to be assigned to the field {@code this.out} for later use, or {@code null} if this instance is to be created + * without an underlying stream. + */ public ArArchiveOutputStream(final OutputStream out) { super(out); }