This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: classpath mergelet
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 14 Nov 2002 13:27:42 -0700
- Subject: Patch: FYI: classpath mergelet
- Reply-to: tromey at redhat dot com
I'm checking this in.
Trivial merge from Classpath.
Tom
Index: ChangeLog
from Eric Blake <ebb9@email.byu.edu>
* java/applet/AppletContext.java: Fix typo and remove redundant
modifiers.
Index: java/applet/AppletContext.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/applet/AppletContext.java,v
retrieving revision 1.3
diff -u -r1.3 AppletContext.java
--- java/applet/AppletContext.java 10 Nov 2002 00:16:42 -0000 1.3
+++ java/applet/AppletContext.java 14 Nov 2002 20:34:33 -0000
@@ -130,7 +130,7 @@
* @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 @@
* @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