Description
https://github.com/apache/maven-javadoc-plugin/pull/59
protected static final int MultiTime = 1 << 4;
will become
/** Constant <code>MultiTime=1 << 4</code> */ protected static final int MultiTime = 1 << 4;
after calling fix operation.
And notice that the << in the doc is NOT allowed by html, thus will fail the javadoc jar generation.
should use << instead.
The expected correct result should be:
/** Constant <code>MultiTime=1 << 4</code> */ protected static final int MultiTime = 1 << 4;
I think I can fix it, but I'm too tired today, tomorrow I will see if I can get some time for the fix.
update: fix done at https://github.com/apache/maven-javadoc-plugin/pull/59
Attachments
Issue Links
- links to