You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/01/13 23:28:29 UTC

[jira] Resolved: (HARMONY-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Mark Hindess resolved HARMONY-2636.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r495984.  I made the small correction mentioned in the JIRA comment.  Next time please test your test!  Please confirm they have been applied as expected.

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

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