jdk/src/jdk.charsets/share/classes/sun/nio/cs/ext/IBM834.java
changeset 33663 2cd62a4bd471
parent 28969 f980bee32887
equal deleted inserted replaced
33662:747a61ad0977 33663:2cd62a4bd471
    60     }
    60     }
    61 
    61 
    62     protected static class Encoder extends DoubleByte.Encoder_DBCSONLY {
    62     protected static class Encoder extends DoubleByte.Encoder_DBCSONLY {
    63         public Encoder(Charset cs) {
    63         public Encoder(Charset cs) {
    64             super(cs, new byte[] {(byte)0xfe, (byte)0xfe},
    64             super(cs, new byte[] {(byte)0xfe, (byte)0xfe},
    65                   IBM933.c2b, IBM933.c2bIndex);
    65                   IBM933.c2b, IBM933.c2bIndex, false);
    66         }
    66         }
    67 
    67 
    68         public int encodeChar(char ch) {
    68         public int encodeChar(char ch) {
    69             int bb = super.encodeChar(ch);
    69             int bb = super.encodeChar(ch);
    70             if (bb == UNMAPPABLE_ENCODING) {
    70             if (bb == UNMAPPABLE_ENCODING) {