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 e27a94762336553da6345161c264baf8c3f4972a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jan 16 09:38:50 2024 -0500 Refactor magic string --- .../apache/commons/compress/archivers/arj/ArjArchiveInputStream.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java b/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java index 79f7de9a1..44d4946b1 100644 --- a/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java @@ -44,6 +44,7 @@ import org.apache.commons.io.Charsets; */ public class ArjArchiveInputStream extends ArchiveInputStream<ArjArchiveEntry> { + private static final String ENCODING_NAME = "CP437"; private static final int ARJ_MAGIC_1 = 0x60; private static final int ARJ_MAGIC_2 = 0xEA; @@ -71,7 +72,7 @@ public class ArjArchiveInputStream extends ArchiveInputStream<ArjArchiveEntry> { * @throws ArchiveException if an exception occurs while reading */ public ArjArchiveInputStream(final InputStream inputStream) throws ArchiveException { - this(inputStream, "CP437"); + this(inputStream, ENCODING_NAME); } /**