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 8e2a304c1897d5caa2fa4e7edc328a1f5c2d6c90 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Feb 28 16:13:28 2024 -0500 Better parameter names --- .../commons/compress/archivers/tar/TarArchiveInputStream.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java index 649db556f..3f5800cbf 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java @@ -748,12 +748,12 @@ public class TarArchiveInputStream extends ArchiveInputStream<TarArchiveEntry> { public synchronized void reset() { } - protected final void setAtEOF(final boolean b) { - atEof = b; + protected final void setAtEOF(final boolean atEof) { + this.atEof = atEof; } - protected final void setCurrentEntry(final TarArchiveEntry e) { - currEntry = e; + protected final void setCurrentEntry(final TarArchiveEntry currEntry) { + this.currEntry = currEntry; } /**