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 c5889b64579d5f08c9a397cde8a1d4e062df62ec Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon Dec 23 08:26:03 2024 -0500 Javadoc: Add missing comment --- .../apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java index 829b141c6..2e75811c4 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java @@ -80,6 +80,11 @@ public class TarArchiveSparseEntry implements TarConstants { return sparseHeaders; } + /** + * Tests whether this entry is extended. + * + * @return whether this entry is extended. + */ public boolean isExtended() { return isExtended; }