Patch: FYI: small javadoc fix

Tom Tromey tromey@redhat.com
Fri Jan 24 19:35:00 GMT 2003


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.
    */ 



More information about the Java-patches mailing list