Commit 14a98745 by Tom Tromey Committed by Tom Tromey

* java/lang/ClassLoader.java (getResources): No longer final.

From-SVN: r121475
parent 4d2446d9
2007-02-01 Tom Tromey <tromey@redhat.com> 2007-02-01 Tom Tromey <tromey@redhat.com>
* java/lang/ClassLoader.java (getResources): No longer final.
2007-02-01 Tom Tromey <tromey@redhat.com>
* java/util/logging/LogManager.java (loggers): Genericized. * java/util/logging/LogManager.java (loggers): Genericized.
(addLogger): Merged. (addLogger): Merged.
(findAncestor): Likewise. (findAncestor): Likewise.
......
...@@ -736,7 +736,7 @@ public abstract class ClassLoader ...@@ -736,7 +736,7 @@ public abstract class ClassLoader
* @since 1.2 * @since 1.2
* @specnote this was <code>final</code> prior to 1.5 * @specnote this was <code>final</code> prior to 1.5
*/ */
public final Enumeration<URL> getResources(String name) throws IOException public Enumeration<URL> getResources(String name) throws IOException
{ {
Enumeration<URL> parentResources; Enumeration<URL> parentResources;
if (parent == null) if (parent == null)
......
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