Michenaud Laurent created MJAVADOC-422:
------------------------------------------

             Summary: javadoc:fix  bug with generic type on method
                 Key: MJAVADOC-422
                 URL: https://jira.codehaus.org/browse/MJAVADOC-422
             Project: Maven Javadoc Plugin
          Issue Type: Bug
    Affects Versions: 2.10.1
         Environment: MacOS
            Reporter: Michenaud Laurent
         Attachments: fixjavadocbugs.zip

See the following example:

/**
 * <p>ThirdBug class.</p>
 */
public class ThirdBug {

        /**
         * <p>compute.</p>
         *
         * @param p_oEntityClass a {@link java.lang.Class} object.
         * @return a {@link java.util.List} object.
         */
        public <T extends Customer> List<T> compute( Class<T> p_oEntityClass ) {
                return null;
        }
        
        
        public static class Customer {
                
        }
}

If i start javadoc:fix, the param <T> is added.
If i start it again, the param T is removed.





--
This message was sent by Atlassian JIRA
(v6.1.6#6162)

Reply via email to