This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: classpath mergelet


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]