classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Patch: FYI: @since updates


From: Tom Tromey
Subject: [cp-patches] Patch: FYI: @since updates
Date: 03 Jan 2006 17:01:18 -0700
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

I'm checking this in.

I happened to notice that a few constructors were missing @since tags.

Tom

2006-01-03  Tom Tromey  <address@hidden>

        * java/io/OutputStreamWriter.java (OutputStreamWriter): Added @since.
        * java/io/InputStreamReader.java (InputStreamReader): Added @since.

Index: java/io/InputStreamReader.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/io/InputStreamReader.java,v
retrieving revision 1.27
diff -u -r1.27 InputStreamReader.java
--- java/io/InputStreamReader.java      9 Nov 2005 22:40:51 -0000       1.27
+++ java/io/InputStreamReader.java      4 Jan 2006 00:06:55 -0000
@@ -230,6 +230,8 @@
    * Creates an InputStreamReader that uses a decoder of the given
    * charset to decode the bytes in the InputStream into
    * characters.
+   * 
+   * @since 1.5
    */
   public InputStreamReader(InputStream in, Charset charset) {
     this.in = in;
@@ -244,6 +246,8 @@
   /**
    * Creates an InputStreamReader that uses the given charset decoder
    * to decode the bytes in the InputStream into characters.
+   * 
+   * @since 1.5
    */
   public InputStreamReader(InputStream in, CharsetDecoder decoder) {
     this.in = in;
Index: java/io/OutputStreamWriter.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/io/OutputStreamWriter.java,v
retrieving revision 1.20
diff -u -r1.20 OutputStreamWriter.java
--- java/io/OutputStreamWriter.java     26 Sep 2005 18:44:39 -0000      1.20
+++ java/io/OutputStreamWriter.java     4 Jan 2006 00:06:55 -0000
@@ -213,6 +213,8 @@
    *
    * @param out The <code>OutputStream</code> to write to
    * @param cs The <code>Charset</code> of the encoding to use
+   * 
+   * @since 1.5
    */
   public OutputStreamWriter(OutputStream out, Charset cs)
   {
@@ -230,6 +232,8 @@
    *
    * @param out The <code>OutputStream</code> to write to
    * @param enc The <code>CharsetEncoder</code> to encode the output with
+   * 
+   * @since 1.5
    */
   public OutputStreamWriter(OutputStream out, CharsetEncoder enc)
   {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]