mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-01 16:34:06 +08:00
* java/lang/ClassLoader.java (getResources): No longer final.
From-SVN: r121475
This commit is contained in:
parent
4d2446d99e
commit
14a9874595
@ -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.
|
||||
|
Binary file not shown.
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user