diff options
Diffstat (limited to 'libjava/java/io/StringReader.java')
-rw-r--r-- | libjava/java/io/StringReader.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libjava/java/io/StringReader.java b/libjava/java/io/StringReader.java index 98a7c4b..8153d80 100644 --- a/libjava/java/io/StringReader.java +++ b/libjava/java/io/StringReader.java @@ -1,5 +1,5 @@ /* StringReader.java -- permits a String to be read as a character input stream - Copyright (C) 1998, 1999, 2000 Free Software Foundation + Copyright (C) 1998, 1999, 2000, 2003 Free Software Foundation This file is part of GNU Classpath. @@ -51,8 +51,6 @@ package java.io; * normal. If no mark has been set, then calling the <code>reset()</code> * method rewinds the read pointer to the beginning of the <code>String</code>. * - * @version 0.0 - * * @author Aaron M. Renn (arenn@urbanophile.com) * @author Warren Levy <warrenl@cygnus.com> * @date October 19, 1998. @@ -73,8 +71,8 @@ public class StringReader extends Reader /** * Create a new <code>StringReader</code> that will read chars from the - * passed in <code>String</code>. This stream will read from the beginning to the - * end of the <code>String</code>. + * passed in <code>String</code>. This stream will read from the beginning + * to the end of the <code>String</code>. * * @param s The <code>String</code> this stream will read from. */ @@ -208,3 +206,4 @@ public class StringReader extends Reader } } } + |