[ https://issues.apache.org/jira/browse/HARMONY-6099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12678745#action_12678745 ] Chunrong Lai commented on HARMONY-6099: --------------------------------------- The discussion is also in https://bugs.eclipse.org/bugs/show_bug.cgi?id=266961. > [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.