Menu

Nested comments after update comment

Help
skybber
2014-08-25
2014-08-25
  • skybber

    skybber - 2014-08-25

    After some eclipse plugins update I have strange problem with update of existing Javadoc comment.

    Before:

    /**
     * Sets the import log.
     *
     * @throws JDODataNullException the JDO data null exception
     * @throws JDONotExistException the JDO not exist exception
     * @throws Exception the exception
    */
    

    After:

    /**
     *  * Sets the import log.
     *  *
     *  * @throws JDODataNullException the JDO data null exception
     *  * @throws JDONotExistException the JDO not exist exception
     *  * @throws Exception the exception
     *
     * @param importLog the new import log
     * @throws JDODataNullException the JDO data null exception
     * @throws JDONotExistException the JDO not exist exception
     * @throws Exception the exception
     */
    

    I can't realize where is the problem.

     

    Last edit: skybber 2014-08-25
    • Martin Kesting

      Martin Kesting - 2014-08-25

      Seems to be a problem with the line separators of your file. JAutodoc relies on \n at the end, when parsing the existing javadoc.

      Are you working on a Mac (or one of your team) with \r as line separator? If so, the only solution at the moment is to convert the file to windows or unix style.

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.