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>
* java/lang/ClassLoader.java (getResources): No longer final.
2007-02-01 Tom Tromey <tromey@redhat.com>
* java/util/logging/LogManager.java (loggers): Genericized.
(addLogger): Merged.
(findAncestor): Likewise.
......
......@@ -736,7 +736,7 @@ public abstract class ClassLoader
* @since 1.2
* @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;
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