* java/lang/ClassLoader.java (getResources): No longer final.
From-SVN: r121475
This commit is contained in:
parent
4d2446d99e
commit
14a9874595
3 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue