This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
commit 23a7fdc4562970146fb7defd43a0847872c233a0 Author: Gary Gregory <[email protected]> AuthorDate: Tue Aug 11 14:19:15 2026 -0400 Javadoc --- .../org/apache/commons/compress/compressors/gzip/GzipParameters.java | 1 + 1 file changed, 1 insertion(+) 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 5658b5a51..d02ff11cf 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 @@ -520,6 +520,7 @@ private String requireNonNulByte(final String text) { * Sets size of the buffer used to retrieve compressed data from {@link Deflater} and write to underlying {@link OutputStream}. * * @param bufferSize The bufferSize to set. Must be a positive type. + * @throws IllegalArgumentException if the bufferSize is not positive. * @since 1.21 */ public void setBufferSize(final int bufferSize) {
