Skip to content

Commit

Permalink
Use StandardCharsets
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 23, 2023
1 parent 74ab79d commit 96aa9a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ final class MimeUtils {
MIME2JAVA.put("ja_jp.eucjp", "EUCJIS");
MIME2JAVA.put("euc-kr", "KSC5601");
MIME2JAVA.put("euckr", "KSC5601");
MIME2JAVA.put("us-ascii", "ISO-8859-1");
MIME2JAVA.put("x-us-ascii", "ISO-8859-1");
MIME2JAVA.put("us-ascii", StandardCharsets.ISO_8859_1.name());
MIME2JAVA.put("x-us-ascii", StandardCharsets.ISO_8859_1.name());
}

/**
Expand Down

0 comments on commit 96aa9a3

Please sign in to comment.