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 A. Ivanov (JIRA)" <ji...@apache.org> on 2007/02/07 12:37:05 UTC

[jira] Closed: (HARMONY-2819) [classlib][swing] j.s.text.JTextComponent.fireCaretUpdate(null) throws unspecified NPE

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

Alexey A. Ivanov closed HARMONY-2819.
-------------------------------------


Everything's correct.
Thank you, Mark.

> [classlib][swing] j.s.text.JTextComponent.fireCaretUpdate(null) throws unspecified NPE
> --------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2819
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2819
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexey A. Ivanov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: H2819-JTextComponent.patch, H2819-JTextComponentTest.patch
>
>
> RI works silently but Harmony throws NPE in the following code.
> ======== Code to Reproduce =======
> import javax.swing.JEditorPane;
> import javax.swing.event.CaretEvent;
> public class Test {
>     private static class Editor extends JEditorPane {
>         @Override
>         public void fireCaretUpdate(CaretEvent ce) {
>             super.fireCaretUpdate(ce);
>         }
>     }
>     public static void main(String[] args) {
>         Editor editor = new Editor();
>         editor.fireCaretUpdate(null);
>     }
> }
> ======= end of code =======

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