jdk/src/share/classes/sun/nio/cs/ext/IBM834.java
changeset 13366 2f5fdf6d8c22
parent 5506 202f599c92aa
child 14342 8435a30053c1
--- a/jdk/src/share/classes/sun/nio/cs/ext/IBM834.java	Tue Jul 24 03:31:44 2012 -0700
+++ b/jdk/src/share/classes/sun/nio/cs/ext/IBM834.java	Tue Jul 24 12:17:39 2012 -0700
@@ -49,8 +49,8 @@
 
     public CharsetDecoder newDecoder() {
         IBM933.initb2c();
-        return new DoubleByte.Decoder_EBCDIC_DBCSONLY(
-            this, IBM933.b2c, 0x40, 0xfe);  // hardcode the b2min/max
+        return new DoubleByte.Decoder_DBCSONLY(
+            this, IBM933.b2c, null, 0x40, 0xfe);  // hardcode the b2min/max
     }
 
     public CharsetEncoder newEncoder() {
@@ -58,7 +58,7 @@
         return new Encoder(this);
     }
 
-    protected static class Encoder extends DoubleByte.Encoder_EBCDIC_DBCSONLY {
+    protected static class Encoder extends DoubleByte.Encoder_DBCSONLY {
         public Encoder(Charset cs) {
             super(cs, new byte[] {(byte)0xfe, (byte)0xfe},
                   IBM933.c2b, IBM933.c2bIndex);