AppletContext.java: Fix typo and remove redundant modifiers.
authorEric Blake <ebb9@email.byu.edu>
Thu, 14 Nov 2002 20:35:27 +0000 (20:35 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Thu, 14 Nov 2002 20:35:27 +0000 (20:35 +0000)
2002-11-12  Eric Blake  <ebb9@email.byu.edu>

* java/applet/AppletContext.java: Fix typo and remove redundant
modifiers.

From-SVN: r59112

libjava/ChangeLog
libjava/java/applet/AppletContext.java

index 5386698fe475704205761c572087c3a1a6b38a93..1a3908b1f48dad8130fe220ac86a255b255aa07e 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-12  Eric Blake  <ebb9@email.byu.edu>
+
+       * java/applet/AppletContext.java: Fix typo and remove redundant
+       modifiers.
+
 2002-11-14  Tom Tromey  <tromey@redhat.com>
 
        * java/lang/natRuntime.cc (insertSystemProperties): Set
index 20206efa75a363b2ce94a202b9d71fd16df31bf1..13c077074b3cdccbfbcaf3d806b0da76fab50383 100644 (file)
@@ -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