You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Petrenko (JIRA)" <ji...@apache.org> on 2007/03/14 15:22:11 UTC

[jira] Closed: (HARMONY-2574) [classlib][swing] javax.swing.JEditorPane.registerEditorKitForContentType(null, null) does not throw unspecified NPE

     [ https://issues.apache.org/jira/browse/HARMONY-2574?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Petrenko closed HARMONY-2574.
------------------------------------


> [classlib][swing] javax.swing.JEditorPane.registerEditorKitForContentType(null, null) does not throw unspecified NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2574
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2574
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Harmony-2574-JEditorPane.patch, Harmony-2574-JEditorPaneTest.patch
>
>
> Test case:
> --------------
> import javax.swing.JEditorPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             JEditorPane.registerEditorKitForContentType(null, null);
>             fail("NPE expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }

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