aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/sun/io/CharToByteCp1383.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/classes/sun/io/CharToByteCp1383.java')
-rw-r--r--src/share/classes/sun/io/CharToByteCp1383.java36
1 files changed, 9 insertions, 27 deletions
diff --git a/src/share/classes/sun/io/CharToByteCp1383.java b/src/share/classes/sun/io/CharToByteCp1383.java
index 4ca950c1b..27c163659 100644
--- a/src/share/classes/sun/io/CharToByteCp1383.java
+++ b/src/share/classes/sun/io/CharToByteCp1383.java
@@ -24,34 +24,16 @@
*/
package sun.io;
-import sun.nio.cs.ext.IBM1383;
+import sun.nio.cs.ext.*;
-/**
-* Tables and data to convert Unicode to Cp1383
-*
-* @author Malcolm Ayres, assisted by UniMap program
-*/
-public class CharToByteCp1383
- extends CharToByteDBCS_ASCII
+public class CharToByteCp1383 extends CharToByteDBCS_ASCII {
-{
+ // Return the character set id
+ public String getCharacterEncoding() {
+ return "Cp1383";
+ }
- private final static IBM1383 nioCoder = new IBM1383();
-
- // Return the character set id
- public String getCharacterEncoding()
- {
- return "Cp1383";
- }
-
- public CharToByteCp1383()
- {
- super();
- super.mask1 = 0xFFE0;
- super.mask2 = 0x001F;
- super.shift = 5;
- super.index1 = nioCoder.getEncoderIndex1();
- super.index2 = nioCoder.getEncoderIndex2();
- super.index2a = nioCoder.getEncoderIndex2a();
- }
+ public CharToByteCp1383() {
+ super((DoubleByte.Encoder)new IBM1383().newEncoder());
+ }
}