* java/lang/ClassLoader.java (findClass): Fixed documentation.
authorTom Tromey <tromey@redhat.com>
Fri, 7 Jan 2005 22:15:46 +0000 (22:15 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Fri, 7 Jan 2005 22:15:46 +0000 (22:15 +0000)
From-SVN: r93069

libjava/ChangeLog
libjava/java/lang/ClassLoader.java

index f60f481317ce3b87a608f752c8c0b137a40b0f9d..160dce07231ab321f982ac129c3b04d2aa8a3f6b 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-06  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/ClassLoader.java (findClass): Fixed documentation.
+
 2005-01-07  Michael Koch  <konqueror@gmx.de>
 
        PR libgcj/18115
index 648afca5435c7a5a81437710b6bb760243ddc506..71f41c1cf1b357589f3bc2e1f55a3e3b703876e2 100644 (file)
@@ -1,5 +1,5 @@
 /* ClassLoader.java -- responsible for loading classes into the VM
-   Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -348,7 +348,7 @@ public abstract class ClassLoader
    *   {
    *     String packageName = name.substring(0, lastDot);
    *     // Look if the package already exists
-   *     if (getPackage(pkg) == null)
+   *     if (getPackage(packageName) == null)
    *       {
    *         // define the package
    *         definePackage(packageName, ...);