[ https://issues.apache.org/jira/browse/HARMONY-2019?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alexei Zakharov reassigned HARMONY-2019:
----------------------------------------
Assignee: Alexei Zakharov
> [classlib][awt] Container.remove(null) expected NPE
> ---------------------------------------------------
>
> Key: HARMONY-2019
> URL: https://issues.apache.org/jira/browse/HARMONY-2019
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Reporter: Denis Kishenko
> Assigned To: Alexei Zakharov
> Attachments: Container.patch, 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.
-
You can reply to this email to add a comment to the issue online.
|