[ http://issues.apache.org/jira/browse/HARMONY-855?page=all ]
Paulex Yang updated HARMONY-855:
--------------------------------
Summary: [Classlib][util]Some java.uiti.Collections methods do not throw unspecified
NPE while RI does (was: Some java.uiti.Collections methods do not throw unspecified NPE while
RI does)
Component/s: Classlib
(was: Non-bug differences from RI)
> [Classlib][util]Some java.uiti.Collections methods do not throw unspecified NPE while
RI does
> ---------------------------------------------------------------------------------------------
>
> Key: HARMONY-855
> URL: http://issues.apache.org/jira/browse/HARMONY-855
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Environment: Windows XP professional
> Reporter: Anton Luht
> Priority: Minor
> Attachments: harmony-855.diff, patch.txt
>
>
> Build: classlib+VM revision 421248 msvc debug
> Problem:
> Some Collections.checked... methods throw NPE if one of their arguments is null in RI
but don't throw in Harmony
> Code to reproduce:
> import java.util.*;
> public class Test {
> public static void main (String[] args) {
> try {
> Collections.checkedSortedMap(new TreeMap(), null, Short.TYPE);
> System.err.println("fail 1");
> } catch (NullPointerException e) {
> }
> try {
> Collections.checkedSortedMap(new TreeMap(), Float.TYPE, null);
> System.err.println("fail 1.1");
> } catch (NullPointerException e) {
> }
> try {
> Collections.checkedMap(new TreeMap(), null, Float.TYPE);
> System.err.println("fail 2");
> } catch (NullPointerException e) {
> }
> try {
> Collections.checkedMap(new TreeMap(), Float.TYPE, null);
> System.err.println("fail 2.2");
> } catch (NullPointerException e) {
> }
> try {
> Collections.checkedCollection(new Stack(), null);
> System.err.println("fail 3");
> } catch (NullPointerException e) {
> }
> }
> }
> in RI this test prints nothing, in Harmony all 'fail' messages are printed
> Please see the patch attached. It contains:
> - JUnit test for the problem
> - patch for java.util.Collections
--
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
|