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 4723764136b94fbd354af0cce98b950999129c7c Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 30 08:52:38 2025 -0400 Javadoc --- .../commons/compress/archivers/tar/TarConstants.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java index b2195dda9..8bdfd3332 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java @@ -28,10 +28,14 @@ // CheckStyle:InterfaceIsTypeCheck OFF (bc) public interface TarConstants { - /** Default record size */ + /** + * Default record size. + */ int DEFAULT_RCDSIZE = 512; - /** Default block size */ + /** + * Default block size. + */ int DEFAULT_BLKSIZE = DEFAULT_RCDSIZE * 20; /** @@ -98,13 +102,17 @@ public interface TarConstants { /** Offset of start of magic field within header record */ int MAGIC_OFFSET = 257; + /** * The length of the magic field in a header buffer. */ int MAGICLEN = 6; - /** Offset of start of magic field within header record */ + /** + * Offset of start of magic field within header record. + */ int VERSION_OFFSET = 263; + /** * Previously this was regarded as part of "magic" field, but it is separate. */