A number of public/protected members in core/ have Javadoc comments that are missing a summary but contain an @return tag. Javadoc provides the inline {@return ...} tag that can be used to satisfy both.
For JavaDocs missing a summary, but providing an @return tag, I want to replace all @return ... tags with the inline tag and move the inline tag to the summary position.
I've already made the changes and plan to open a PR.
A number of public/protected members in
core/have Javadoc comments that are missing a summary but contain an@returntag. Javadoc provides the inline{@return ...}tag that can be used to satisfy both.For JavaDocs missing a summary, but providing an
@returntag, I want to replace all@return ...tags with the inline tag and move the inline tag to the summary position.I've already made the changes and plan to open a PR.