This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: typo in ObjectInputStream
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Cc: classpath-patches at gnu dot org
- Date: 01 Jun 2005 16:09:25 -0600
- Subject: Patch: FYI: typo in ObjectInputStream
- Reply-to: tromey at redhat dot com
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()
{