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 fe079d47eb23f2b28e6cc5ba0257f54b62aadb47 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Nov 30 10:14:42 2022 -0500 Javadoc --- .../org/apache/commons/compress/archivers/tar/TarConstants.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 5ce6681a..1b082cdd 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 @@ -332,8 +332,15 @@ public interface TarConstants { * The magic tag representing a GNU tar archive. */ String MAGIC_GNU = "ustar "; - // Appear to be two possible GNU versions + + /** + * One of two two possible GNU versions + */ String VERSION_GNU_SPACE = " \0"; + + /** + * One of two two possible GNU versions + */ String VERSION_GNU_ZERO = "0\0"; /**