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

[jira] Updated: (HARMONY-2019) [classlib][awt] Container.remove(null) expected NPE

     [ http://issues.apache.org/jira/browse/HARMONY-2019?page=all ]

Andrey Pavlenko updated HARMONY-2019:
-------------------------------------

    Attachment: Container.patch

Attaching a patch that speedups the removing and also fixes the issue.

> [classlib][awt] Container.remove(null) expected NPE
> ---------------------------------------------------
>
>                 Key: HARMONY-2019
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2019
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Attachments: Container.patch, ContainerRTest.patch
>
>
> Harmony implementation of Container.remove(Component ) doesn't throw NPE while RI does. Spec silent about any exceptions.
> ========== Test ============
> import java.awt.*;
> public class Test {	
>     static public void main(String[] args) {
>     	Container cmp = new Container();
>     	cmp.remove((Button )null);
>     	System.out.println("PASSED");
>     }    
> }
> ======== RI ===========
> java.lang.NullPointerException
> 	at java.awt.Container.remove(Container.java:1165)
> 	at Test.main(Test.java:9)
> ===== Harmony ========
> PASSED

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