You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2006/12/12 17:29:26 UTC

[jira] Commented: (HARMONY-1492) [classlib][luni] Constructor of HashMap throw unexpected exception

    [ http://issues.apache.org/jira/browse/HARMONY-1492?page=comments#action_12457781 ] 
            
Tim Ellison commented on HARMONY-1492:
--------------------------------------

What is the conclusion here?  Do we want to be exception comaptible?  I think so.


> [classlib][luni] Constructor of HashMap throw unexpected exception
> ------------------------------------------------------------------
>
>                 Key: HARMONY-1492
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1492
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: spark shen
>         Attachments: 1492.diff
>
>
> Below tests pass on RI, but fails on Harmony:
> public class SubMapTest extends TestCase {
>     public void testSubclass() {
>         HashMap map = new HashMap();
>         map.put("a", "a");
>         SubMap map2 = new SubMap(map);
>     }
> }
> class SubMap<K, V> extends HashMap<K, V> {
>     public SubMap(Map<? extends K, ? extends V> m) {
>         super(m);
>     }
>     public V put(K key, V value) {
>         throw new RuntimeException();
>     }
> }
> I will attach a patch soon.

-- 
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