aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/sun/io/ByteToCharCp939.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/classes/sun/io/ByteToCharCp939.java')
-rw-r--r--src/share/classes/sun/io/ByteToCharCp939.java34
1 files changed, 9 insertions, 25 deletions
diff --git a/src/share/classes/sun/io/ByteToCharCp939.java b/src/share/classes/sun/io/ByteToCharCp939.java
index fae850bbc..4049984f4 100644
--- a/src/share/classes/sun/io/ByteToCharCp939.java
+++ b/src/share/classes/sun/io/ByteToCharCp939.java
@@ -24,32 +24,16 @@
*/
package sun.io;
-import sun.nio.cs.ext.IBM939;
+import sun.nio.cs.ext.*;
-/**
-* Tables and data to convert Cp939 to Unicode.
-*
-* @author Malcolm Ayres, assisted by UniMap program
-*/
-public class ByteToCharCp939
- extends ByteToCharDBCS_EBCDIC
+public class ByteToCharCp939 extends ByteToCharDBCS_EBCDIC {
-{
- private final static IBM939 nioCoder = new IBM939();
+ // Return the character set id
+ public String getCharacterEncoding() {
+ return "Cp939";
+ }
- // Return the character set id
- public String getCharacterEncoding()
- {
- return "Cp939";
- }
-
- public ByteToCharCp939() {
- super();
- super.mask1 = 0xFFC0;
- super.mask2 = 0x003F;
- super.shift = 6;
- super.singleByteToChar = nioCoder.getDecoderByteToCharMappings();
- super.index1 = nioCoder.getDecoderIndex1();
- super.index2 = nioCoder.getDecoderIndex2();
- }
+ public ByteToCharCp939() {
+ super((DoubleByte.Decoder)new IBM939().newDecoder());
+ }
}