diff options
author | Aaron M. Renn <arenn@urbanophile.com> | 1998-12-02 01:23:17 +0000 |
---|---|---|
committer | Aaron M. Renn <arenn@urbanophile.com> | 1998-12-02 01:23:17 +0000 |
commit | ee54687c3559136093ab81256198828376e29267 (patch) | |
tree | 34cc1ccd1772486de13b574c4f325c1694849a4e /java | |
parent | 1407ba060db74a0f3e6ab8970ad2708078716a2e (diff) | |
download | classpath-ee54687c3559136093ab81256198828376e29267.tar.gz |
Added comments in code requesting that non-spec public methods not be deleted
Diffstat (limited to 'java')
-rw-r--r-- | java/io/PushbackInputStream.java | 2 | ||||
-rw-r--r-- | java/io/PushbackReader.java | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/java/io/PushbackInputStream.java b/java/io/PushbackInputStream.java index bc7836621..a745e41c7 100644 --- a/java/io/PushbackInputStream.java +++ b/java/io/PushbackInputStream.java @@ -141,6 +141,8 @@ markSupported() /*************************************************************************/ +// Don't delete this method just because the spec says it shouldn't be +// there. See the CVS log for details. /** * This method always throws an IOException in this class because * mark/reset functionality is not supported. diff --git a/java/io/PushbackReader.java b/java/io/PushbackReader.java index 4d4abec5d..9ff29c3e4 100644 --- a/java/io/PushbackReader.java +++ b/java/io/PushbackReader.java @@ -196,6 +196,8 @@ ready() throws IOException /*************************************************************************/ +// Don't delete this method just because the spec says it shouldn't be there! +// See the CVS log for details. /** * This method skips the specified number of chars in the stream. It * returns the actual number of chars skipped, which may be less than the |