src/jdk.charsets/share/classes/sun/nio/cs/ext/Big5_Solaris.java.template

Print this page

        

@@ -49,16 +49,16 @@
                 || (cs instanceof Big5_Solaris));
     }
 
     public CharsetDecoder newDecoder() {
         initb2c();
-        return new  DoubleByte.Decoder(this, b2c, b2cSB, 0x40, 0xfe);
+        return new  DoubleByte.Decoder(this, b2c, b2cSB, 0x40, 0xfe, true);
     }
 
     public CharsetEncoder newEncoder() {
         initc2b();
-        return new DoubleByte.Encoder(this, c2b, c2bIndex);
+        return new DoubleByte.Encoder(this, c2b, c2bIndex, true);
     }
 
     static char[][] b2c;
     static char[] b2cSB;
     private static volatile boolean b2cInitialized = false;