Closed anthonyvdotbe closed 3 months ago
The formatter messes up Javadoc like {@return foo}.
{@return foo}
For example formatting this:
/** * {@return foo} */ String bar() { return null; }
Actual:
/** * { * * @return foo} */ String bar() { return null; }
Expected:
created a issue in netbeans related to this bug
created netbeans pr for this issue
before formatting bar method:
after formatting bar method:
The formatter messes up Javadoc like
{@return foo}
.For example formatting this:
Actual:
Expected: