Abnaxos / markdown-doclet

A Doclet that allows the use of Markdown in JavaDoc comments.
GNU General Public License v3.0
319 stars 40 forks source link

Warning - Multiple sources of package comments found #1

Closed Abnaxos closed 11 years ago

Abnaxos commented 11 years ago

JavaDoc complains about multiple sources for package comments. setRawCommentText() checks that it's been called only once -- if both package.html and package-info.java exists, this method would be called twice, therefore JavaDoc issues a warning on the second call.

In this case, however, the second call originates in the docs being converted from HTML to Markdown.

Find a workaround.