[ 
https://issues.apache.org/jira/browse/MJAVADOC-659?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17183971#comment-17183971
 ] 

Hudson commented on MJAVADOC-659:
---------------------------------

Build succeeded in Jenkins: Maven » Maven TLP » maven-javadoc-plugin » master 
#18

See 
https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-javadoc-plugin/job/master/18/

> javadoc:fix replaces existing @throws descriptions
> --------------------------------------------------
>
>                 Key: MJAVADOC-659
>                 URL: https://issues.apache.org/jira/browse/MJAVADOC-659
>             Project: Maven Javadoc Plugin
>          Issue Type: Bug
>          Components: fix
>            Reporter: Jin Xu
>            Priority: Major
>
> original code:
> {code:java}
>     /**
>      * <p>testException.</p>
>      *
>      * @throws java.lang.Exception when reader.read get wrong.
>      */
>     public void testException() throws Exception {
>         throw new Exception();
>     }
> {code}
> after we calling fix, it becomes:
> {code:java}
>     /**
>      * <p>testException.</p>
>      *
>      * @throws java.lang.Exception if any.
>      */
>     public void testException() throws Exception {
>         throw new Exception();
>     }
> {code}
> So why must I use "if any", and must change my original words?
> I think this be a bug, but if it is by design, please tell me the reason.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to