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 4c13bb433d1d1e7a6d0e77482fed49c0e53c4c1d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Oct 19 08:51:16 2023 -0400 Fix typo in exception message --- .../org/apache/commons/compress/archivers/ArchiveStreamFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java index 80f7619d..556f62e4 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java +++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java @@ -511,7 +511,7 @@ public class ArchiveStreamFactory implements ArchiveStreamProvider { final String archiverName, final OutputStream out, final String actualEncoding) throws ArchiveException { if (archiverName == null) { - throw new IllegalArgumentException("Archivername must not be null."); + throw new IllegalArgumentException("Archiver name must not be null."); } if (out == null) { throw new IllegalArgumentException("OutputStream must not be null.");