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 4c04e4a80 Use final 4c04e4a80 is described below commit 4c04e4a803831c00663a6dafd0f0837fba60633b Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 26 09:07:15 2025 -0400 Use final --- .../commons/compress/compressors/lzma/LZMACompressorInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/compressors/lzma/LZMACompressorInputStream.java b/src/main/java/org/apache/commons/compress/compressors/lzma/LZMACompressorInputStream.java index 0f5c04362..679faa6f3 100644 --- a/src/main/java/org/apache/commons/compress/compressors/lzma/LZMACompressorInputStream.java +++ b/src/main/java/org/apache/commons/compress/compressors/lzma/LZMACompressorInputStream.java @@ -71,7 +71,7 @@ public LZMACompressorInputStream get() throws IOException { * threshold. * @return this instance. */ - public Builder setMemoryLimitKiB(int memoryLimitKiB) { + public Builder setMemoryLimitKiB(final int memoryLimitKiB) { this.memoryLimitKiB = memoryLimitKiB; return this; }