This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: small javadoc fix
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 24 Jan 2003 12:30:51 -0700
- Subject: Patch: FYI: small javadoc fix
- Reply-to: tromey at redhat dot com
I'm checking this in to the trunk and the 3.3 branch.
ClassLoader.findLoadedClass is no longer native, so this changes the
javadoc to match.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/lang/ClassLoader.java (findLoadedClass): Removed erroneous
comment.
Index: java/lang/ClassLoader.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/ClassLoader.java,v
retrieving revision 1.25
diff -u -r1.25 ClassLoader.java
--- java/lang/ClassLoader.java 19 Dec 2002 19:31:54 -0000 1.25
+++ java/lang/ClassLoader.java 24 Jan 2003 19:32:31 -0000
@@ -1,6 +1,6 @@
// ClassLoader.java - Define policies for loading Java classes.
-/* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation
+/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation
This file is part of libgcj.
@@ -733,8 +733,7 @@
/**
* If a class named <code>name</code> was previously loaded using
* this <code>ClassLoader</code>, then it is returned. Otherwise
- * it returns <code>null</code>. (Unlike the JDK this is native,
- * since we implement the class table internally.)
+ * it returns <code>null</code>.
* @param name class to find.
* @return the class loaded, or null.
*/