/[classpath]/classpath/gnu/java/nio/charset/ISO_8859_1.java
ViewVC logotype

Diff of /classpath/gnu/java/nio/charset/ISO_8859_1.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mkoch, Fri Nov 8 14:05:22 2002 UTC revision 1.3 by tromey, Sat Nov 6 22:51:40 2004 UTC
# Line 1  Line 1 
1  /* ISO_8859_1.java --  /* ISO_8859_1.java --
2     Copyright (C) 2002 Free Software Foundation, Inc.     Copyright (C) 2002, 2004 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 73  final class ISO_8859_1 extends Charset Line 73  final class ISO_8859_1 extends Charset
73    
74    private static final class Decoder extends CharsetDecoder    private static final class Decoder extends CharsetDecoder
75    {    {
76      private Decoder (Charset cs)      // Package-private to avoid a trampoline constructor.
77        Decoder (Charset cs)
78      {      {
79        super (cs, 1.0f, 1.0f);        super (cs, 1.0f, 1.0f);
80      }      }
# Line 100  final class ISO_8859_1 extends Charset Line 101  final class ISO_8859_1 extends Charset
101    
102    private static final class Encoder extends CharsetEncoder    private static final class Encoder extends CharsetEncoder
103    {    {
104      private Encoder (Charset cs)      // Package-private to avoid a trampoline constructor.
105        Encoder (Charset cs)
106      {      {
107        super (cs, 1.0f, 1.0f);        super (cs, 1.0f, 1.0f);
108      }      }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26