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 36f204caa6f7bb2c92a9ad04ba246ad47a2465d2 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 26 16:26:39 2025 -0400 Camel case parameter name --- .../apache/commons/compress/compressors/CompressorStreamProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/compressors/CompressorStreamProvider.java b/src/main/java/org/apache/commons/compress/compressors/CompressorStreamProvider.java index 62da8232a..c1bec13fa 100644 --- a/src/main/java/org/apache/commons/compress/compressors/CompressorStreamProvider.java +++ b/src/main/java/org/apache/commons/compress/compressors/CompressorStreamProvider.java @@ -43,13 +43,13 @@ public interface CompressorStreamProvider { * {@value org.apache.commons.compress.compressors.CompressorStreamFactory#Z} or * {@value org.apache.commons.compress.compressors.CompressorStreamFactory#DEFLATE} * @param in the input stream - * @param decompressUntilEOF if true, decompress until the end of the input; if false, stop after the first stream and leave the input position to point to + * @param decompressUntilEof if true, decompress until the end of the input; if false, stop after the first stream and leave the input position to point to * the next byte after the stream. This setting applies to the gzip, bzip2 and XZ formats only. * @return compressor input stream * @throws CompressorException if the compressor name is not known * @throws IllegalArgumentException if the name or input stream is null */ - CompressorInputStream createCompressorInputStream(String name, InputStream in, boolean decompressUntilEOF) throws CompressorException; + CompressorInputStream createCompressorInputStream(String name, InputStream in, boolean decompressUntilEof) throws CompressorException; /** * Creates a compressor output stream from a compressor name and an output stream.