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

Diff of /classpath/gnu/java/nio/charset/US_ASCII.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  /* US_ASCII.java --  /* US_ASCII.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 US_ASCII extends Charset Line 73  final class US_ASCII 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 105  final class US_ASCII extends Charset Line 106  final class US_ASCII extends Charset
106    
107    private static final class Encoder extends CharsetEncoder    private static final class Encoder extends CharsetEncoder
108    {    {
109      private Encoder (Charset cs)      // Package-private to avoid a trampoline constructor.
110        Encoder (Charset cs)
111      {      {
112        super (cs, 1.0f, 1.0f);        super (cs, 1.0f, 1.0f);
113      }      }

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