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 6596145fc30987a61efb778b4c22c405894e43b9 Author: Gary Gregory <[email protected]> AuthorDate: Tue Jul 14 13:30:22 2026 -0400 Use final --- .../commons/compress/archivers/tar/TarArchiveSparseZeroInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseZeroInputStream.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseZeroInputStream.java index 8bffc08a5..e9db8d747 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseZeroInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseZeroInputStream.java @@ -40,7 +40,7 @@ public int read() { } @Override - public int read(byte[] b, int off, int len) throws IOException { + public int read(final byte[] b, final int off, final int len) throws IOException { IOUtils.checkFromIndexSize(b, off, len); if (len == 0) { return 0;
