+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
/* 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.
* {
* 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, ...);