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: typo in ObjectInputStream


Daniel Bonniot pointed out a typo in ObjectInputStream.  I'm checking
this in to libgcj and Classpath.  I've only posted the Classpath
version of the patch; they differ only in context.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>
	* java/io/ObjectInputStream.java (currentLoader): Fixed typo.

Index: java/io/ObjectInputStream.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/io/ObjectInputStream.java,v
retrieving revision 1.56
diff -u -r1.56 ObjectInputStream.java
--- java/io/ObjectInputStream.java 30 Apr 2005 13:53:30 -0000 1.56
+++ java/io/ObjectInputStream.java 1 Jun 2005 22:11:56 -0000
@@ -783,8 +783,8 @@
   }
 
   /**
-   * Returns he most recent user defined ClassLoader on the execution stack
-   * or null of none is found.
+   * Returns the most recent user defined ClassLoader on the execution stack
+   * or null if none is found.
    */
   private ClassLoader currentLoader()
   {


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