You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nathan Beyer (JIRA)" <ji...@apache.org> on 2009/02/24 05:04:01 UTC

[jira] Commented: (HARMONY-6099) [eut][classlib][net] Non-bug difference with RI: Handler field in java.net.URL?

    [ https://issues.apache.org/jira/browse/HARMONY-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12676174#action_12676174 ] 

Nathan Beyer commented on HARMONY-6099:
---------------------------------------

Do you know where in the code this is? Is it just in the test code or in the runtime?

I'd say go ahead and log a bug with eclipse and see what they say.

> [eut][classlib][net] Non-bug difference with RI: Handler field in java.net.URL?
> -------------------------------------------------------------------------------
>
>                 Key: HARMONY-6099
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6099
>             Project: Harmony
>          Issue Type: Improvement
>          Components: build - test - ci
>         Environment: win32
>            Reporter: Chunrong Lai
>
>   Harmony throws exception for the test case extracted from EUT, while I do not think Harmony has problem (I did not see "handler" field is required).  So should it be a bug of EUT? Anyway it reduces the pass rate of Harmony for OSGI test of EUT.
>  
> import java.lang.reflect.Field;
> import java.net.*;
> public class TestURLHandler {
>     public static void main(String[] args) {
>      try {
>       Field handlerField = URL.class.getDeclaredField("handler");
>       handlerField.setAccessible(true);
>       System.out.println("OK");
>      } catch (Exception e) {
>       e.printStackTrace();
>      }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.