When I start a javadoc comment for a function with no parameters, the javadoc skeleton includes an empty @param. This didn't happen in VS18.
For example, starting with
/**[cursor]*/
void func();
and pressing enter, expands to
/**
*
* @param
*/
void func();
Also, for functions that do have parameters, if I use the javadoc-editor to enter a javadoc comment, it aligns the parameter descriptions in the same column normally. The javadoc skeleton that's entered automatically inserts "tab stops" for each parameter description, but they're not aligned. And because of these "tab stops", I can't use tab to move to a common column for my descriptions. Is there any way to get the tab stops aligned after the parameter names?