Closed as not planned
Closed as not planned
Description
See https://checkstyle.sourceforge.io/checks/javadoc/javadocmethod.html#JavadocMethod
I would like to be able to use inline return comments with Spring Java Format:
public class Example8 {
/**
* {@return the foo}
*/
public int getFoo() { return 0; }
/**
* Returns the bar
* @return the bar
*/
public int getBar() { return 0; }
}
I can overwrite that setting, as the the spring-check style.xml has precedence.