You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Denis Kishenko (JIRA)" <ji...@apache.org> on 2006/10/31 15:40:16 UTC

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

[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


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