diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-14 20:35:27 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-14 20:35:27 +0000 |
commit | 9dd0ffbe11bbe34132c4f0a131bbc2031118cfa6 (patch) | |
tree | c8b2a9e9e0fe7d4093f4a4da17f46c00b93f3e48 /libjava/java | |
parent | f507a3cb36267e1a793279d49223cde45b6ff9b8 (diff) | |
download | ppe42-gcc-9dd0ffbe11bbe34132c4f0a131bbc2031118cfa6.tar.gz ppe42-gcc-9dd0ffbe11bbe34132c4f0a131bbc2031118cfa6.zip |
2002-11-12 Eric Blake <ebb9@email.byu.edu>
* java/applet/AppletContext.java: Fix typo and remove redundant
modifiers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59112 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/applet/AppletContext.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/applet/AppletContext.java b/libjava/java/applet/AppletContext.java index 20206efa75a..13c077074b3 100644 --- a/libjava/java/applet/AppletContext.java +++ b/libjava/java/applet/AppletContext.java @@ -130,7 +130,7 @@ public interface AppletContext * @throws IOException if the stream is too large * @since 1.4 */ - public void setStream(String key, InputStream stream) throws IOException; + void setStream(String key, InputStream stream) throws IOException; /** * Return the stream associated with a given key in this applet context, or @@ -141,14 +141,14 @@ public interface AppletContext * @return the associated stream, or null * @since 1.4 */ - public InputStream getStream(String key); + InputStream getStream(String key); /** - * Iterate over all keys that have associated streams. Sttream associated + * Iterate over all keys that have associated streams. Stream associated * are local to the applet context, for security purposes. * * @return an iterator over the association keys * @since 1.4 */ - public Iterator getStreamKeys(); + Iterator getStreamKeys(); } // interface AppletContext |