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
The following commit(s) were added to refs/heads/master by this push: new bd97245a Format tweak bd97245a is described below commit bd97245af0896d9a083c818d144c005809e8ff7e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jun 6 11:16:49 2022 -0400 Format tweak --- .../java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java index 40eb4f24..01569099 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java @@ -1960,7 +1960,7 @@ public class TarArchiveEntry implements ArchiveEntry, TarConstants, EntryStreamO */ public void setSize(final long size) { if (size < 0){ - throw new IllegalArgumentException("Size is out of range: "+size); + throw new IllegalArgumentException("Size is out of range: " + size); } this.size = size; }