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

From-SVN: r121475
This commit is contained in:
Tom Tromey 2007-02-01 23:00:01 +00:00 committed by Tom Tromey
parent 4d2446d99e
commit 14a9874595
3 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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)