Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/main/java/org/jruby/util/KCode.java
Original file line number Diff line number Diff line change
@@ -33,9 +33,9 @@
public enum KCode {
NIL(null, "ASCII", 0),
NONE("NONE", "ASCII", 0),
UTF8("UTF8", "NonStrictUTF8", 64),
SJIS("SJIS", "NonStrictSJIS", 48),
EUC("EUC", "NonStrictEUCJP", 32);
UTF8("UTF8", "UTF8", 64),
SJIS("SJIS", "SJIS", 48),
EUC("EUC", "EUCJP", 32);

private final String kcode;
private final String encodingName;

0 comments on commit 4bf7dd2

Please sign in to comment.