You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2006/12/23 23:15:23 UTC

[jira] Commented: (HARMONY-2357) [classlib] [luni] Method findClass() in class URLClassLoader throws ClassNotFoundException

    [ http://issues.apache.org/jira/browse/HARMONY-2357?page=comments#action_12460667 ] 
            
Tim Ellison commented on HARMONY-2357:
--------------------------------------

D'oh -- thanks Mikhail!  Thank you for checking the code so carefully.

You test patch was applied to the LUNI module at repo revision r489932.

Please check that I got it right this time.


> [classlib] [luni] Method findClass() in class URLClassLoader throws ClassNotFoundException
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2357
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2357
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: WIN XP
>            Reporter: Sergey Krivenko
>         Assigned To: Tim Ellison
>         Attachments: Harmony-2357-URLClassLoader.patch, Harmony-2357-URLClassLoaderTest.patch, URLClassLoaderTest.patch
>
>
> The following test throws ClassNotFoundException while RI throws NPE:
> import java.net.*;
> public class test  { 
>     public static void main (String[] args) {                     
>         try {                                                                   
>                testURLClassLoader cl = new testURLClassLoader(new URL[557]);    
>                cl.findClass("0");                                            
>             } catch (Exception e) {                      
>            e.printStackTrace();
>         }                         
>     }     
> }
> class testURLClassLoader extends URLClassLoader {
>    public testURLClassLoader(URL[] urls) {
>      super(urls);
>    }
>     public Class findClass(String cl) throws ClassNotFoundException {
>      return super.findClass(cl);
>    }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira