< prev index next >

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

Print this page

        

@@ -1,8 +1,8 @@
 
 /*
- * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -25,11 +25,11 @@
  */
 
 /*
  */
 
-package sun.nio.cs.ext;
+package $PACKAGE$;
 
 import java.nio.ByteBuffer;
 import java.nio.charset.Charset;
 import java.nio.charset.CharsetDecoder;
 import java.nio.charset.CharsetEncoder;

@@ -39,11 +39,11 @@
 
 // EBCDIC DBCS-only Korean
 public class IBM834 extends Charset
 {
     public IBM834() {
-        super("x-IBM834", ExtendedCharsets.aliasesFor("x-IBM834"));
+        super("x-IBM834", $ALIASES$);
     }
 
     public boolean contains(Charset cs) {
         return (cs instanceof IBM834);
     }
< prev index next >