Commit 25a42e44 by Tom Tromey Committed by Tom Tromey

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

From-SVN: r93069
parent b827788f
2005-01-06 Tom Tromey <tromey@redhat.com>
* java/lang/ClassLoader.java (findClass): Fixed documentation.
2005-01-07 Michael Koch <konqueror@gmx.de> 2005-01-07 Michael Koch <konqueror@gmx.de>
PR libgcj/18115 PR libgcj/18115
......
/* ClassLoader.java -- responsible for loading classes into the VM /* 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. This file is part of GNU Classpath.
...@@ -348,7 +348,7 @@ public abstract class ClassLoader ...@@ -348,7 +348,7 @@ public abstract class ClassLoader
* { * {
* String packageName = name.substring(0, lastDot); * String packageName = name.substring(0, lastDot);
* // Look if the package already exists * // Look if the package already exists
* if (getPackage(pkg) == null) * if (getPackage(packageName) == null)
* { * {
* // define the package * // define the package
* definePackage(packageName, ...); * definePackage(packageName, ...);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment