* java/lang/ClassLoader.java (findClass): Fixed documentation.

From-SVN: r93069
This commit is contained in:
Tom Tromey 2005-01-07 22:15:46 +00:00 committed by Tom Tromey
parent b827788f57
commit 25a42e445e
2 changed files with 6 additions and 2 deletions

View 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

View 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, ...);