javavscode
javavscode copied to clipboard
Formatter doesn't support `{@return foo}`
The formatter messes up Javadoc like {@return foo}.
For example formatting this:
/**
* {@return foo}
*/
String bar() {
return null;
}
Actual:
/**
* {
*
* @return foo}
*/
String bar() {
return null;
}
Expected:
/**
* {@return foo}
*/
String bar() {
return null;
}
created a issue in netbeans related to this bug
created netbeans pr for this issue
verification of fix
before formatting bar method:
after formatting bar method: