jdk/src/java.base/share/classes/sun/misc/UCEncoder.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    84     protected int bytesPerLine() {
    84     protected int bytesPerLine() {
    85         return (48);
    85         return (48);
    86     }
    86     }
    87 
    87 
    88     /* this is the UCE mapping of 0-63 to characters .. */
    88     /* this is the UCE mapping of 0-63 to characters .. */
    89     private final static byte map_array[] = {
    89     private static final byte map_array[] = {
    90         //     0         1         2         3         4         5         6         7
    90         //     0         1         2         3         4         5         6         7
    91         (byte)'0',(byte)'1',(byte)'2',(byte)'3',(byte)'4',(byte)'5',(byte)'6',(byte)'7', // 0
    91         (byte)'0',(byte)'1',(byte)'2',(byte)'3',(byte)'4',(byte)'5',(byte)'6',(byte)'7', // 0
    92         (byte)'8',(byte)'9',(byte)'A',(byte)'B',(byte)'C',(byte)'D',(byte)'E',(byte)'F', // 1
    92         (byte)'8',(byte)'9',(byte)'A',(byte)'B',(byte)'C',(byte)'D',(byte)'E',(byte)'F', // 1
    93         (byte)'G',(byte)'H',(byte)'I',(byte)'J',(byte)'K',(byte)'L',(byte)'M',(byte)'N', // 2
    93         (byte)'G',(byte)'H',(byte)'I',(byte)'J',(byte)'K',(byte)'L',(byte)'M',(byte)'N', // 2
    94         (byte)'O',(byte)'P',(byte)'Q',(byte)'R',(byte)'S',(byte)'T',(byte)'U',(byte)'V', // 3
    94         (byte)'O',(byte)'P',(byte)'Q',(byte)'R',(byte)'S',(byte)'T',(byte)'U',(byte)'V', // 3