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
The following commit(s) were added to refs/heads/master by this push: new 8a8643402 Add missing Javadoc 8a8643402 is described below commit 8a864340250863c47b7306714493f070274eba9a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Nov 6 11:36:49 2024 -0500 Add missing Javadoc --- .../commons/compress/compressors/gzip/GzipParameters.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/compressors/gzip/GzipParameters.java b/src/main/java/org/apache/commons/compress/compressors/gzip/GzipParameters.java index 92bdcb3f6..b6eb63c22 100644 --- a/src/main/java/org/apache/commons/compress/compressors/gzip/GzipParameters.java +++ b/src/main/java/org/apache/commons/compress/compressors/gzip/GzipParameters.java @@ -303,6 +303,11 @@ public class GzipParameters { return this.bufferSize; } + /** + * Gets an arbitrary user-defined comment. + * + * @return a user-defined comment. + */ public String getComment() { return comment; } @@ -410,6 +415,11 @@ public class GzipParameters { this.bufferSize = bufferSize; } + /** + * Sets an arbitrary user-defined comment. + * + * @param comment a user-defined comment. + */ public void setComment(final String comment) { this.comment = comment; }