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 bf5ad3fe054f4e975e52aedcdee0ae4abc9176e1 Author: Gary Gregory <[email protected]> AuthorDate: Tue Aug 11 14:16:58 2026 -0400 [LZ4] BlockLZ4CompressorOutputStream now throws CompressorException instead of IllegalArgumetException/IllegalStateException. --- .../commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java b/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java index 7a74a4065..ef7615505 100644 --- a/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java +++ b/src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java @@ -417,7 +417,7 @@ public BZip2CompressorOutputStream(final OutputStream out) throws IOException { * @param out The destination stream. * @param blockSize The blockSize as 100k units. * @throws IOException if an I/O error occurs in the specified stream. - * @throws IllegalArgumentException if {@code (blockSize < 1) || (blockSize > 9)}. + * @throws IllegalArgumentException if {@code (blockSize < 1) or (blockSize > 9)}. * @throws NullPointerException if {@code out == null}. * @see #MIN_BLOCKSIZE * @see #MAX_BLOCKSIZE
