You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2006/12/27 04:28:23 UTC

[jira] Commented: (HARMONY-2477) [classlib][annotation] java.lang.annotation.IncompleteAnnotationException(null,String ) does not throw NullPointerException (RI compatibility issue)

    [ http://issues.apache.org/jira/browse/HARMONY-2477?page=comments#action_12460943 ] 
            
Vasily Zakharov commented on HARMONY-2477:
------------------------------------------

> This patch has one problem - the single test contained there is in fact run 3 times, I'm not sure why.

In fact, this is clearly due to AllClasses classes presence. As discussed here: http://thread.gmane.org/gmane.comp.java.harmony.devel/20329/focus=22194 those classes could probably be removed and that would resolve the problem.


> [classlib][annotation] java.lang.annotation.IncompleteAnnotationException(null,String ) does not throw NullPointerException (RI compatibility issue)
> ----------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2477
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2477
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Anton Ivanov
>         Assigned To: Alexei Zakharov
>            Priority: Trivial
>         Attachments: Harmony-2477-Test.patch, Harmony-2477.patch
>
>
> java.lang.IncompleteAnnotationException(Class<? extends Annotation> annotationType,String elementName) does not throw 
> NullPointerException if annotationType == null while RI throws. But there is no mention of any exceptions in the specificarion. 
> So this is a compatibility issue.
> The code to reproduce the issue:
> import junit.framework.TestCase;
> import java.lang.annotation.IncompleteAnnotationException;
> public class TestIncompleteAnnotationException extends TestCase {     
>    public void test1 () {  
>        try {  
>            IncompleteAnnotationException obj 
>                = new IncompleteAnnotationException(null, "str");
>            fail("NullPointerException must be thrown");                
>        } catch (NullPointerException e) {
>            //expected
>        }
>     }
> }

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