emul/compact/src/main/java/java/io/InputStreamReader.java
branchemul
changeset 560 53fafe384803
parent 557 5be31d9fa455
child 561 f06b2d18eb52
     1.1 --- a/emul/compact/src/main/java/java/io/InputStreamReader.java	Wed Jan 23 22:32:27 2013 +0100
     1.2 +++ b/emul/compact/src/main/java/java/io/InputStreamReader.java	Wed Jan 23 22:55:28 2013 +0100
     1.3 @@ -109,13 +109,14 @@
     1.4       * @since 1.4
     1.5       * @spec JSR-51
     1.6       */
     1.7 +/* XXX:
     1.8      public InputStreamReader(InputStream in, Charset cs) {
     1.9          super(in);
    1.10          if (cs == null)
    1.11              throw new NullPointerException("charset");
    1.12          sd = StreamDecoder.forInputStreamReader(in, this, cs);
    1.13      }
    1.14 -
    1.15 +*/
    1.16      /**
    1.17       * Creates an InputStreamReader that uses the given charset decoder.  </p>
    1.18       *
    1.19 @@ -125,13 +126,15 @@
    1.20       * @since 1.4
    1.21       * @spec JSR-51
    1.22       */
    1.23 +/* XXX:
    1.24      public InputStreamReader(InputStream in, CharsetDecoder dec) {
    1.25          super(in);
    1.26          if (dec == null)
    1.27              throw new NullPointerException("charset decoder");
    1.28          sd = StreamDecoder.forInputStreamReader(in, this, dec);
    1.29      }
    1.30 -
    1.31 +*/
    1.32 +    
    1.33      /**
    1.34       * Returns the name of the character encoding being used by this stream.
    1.35       *