Comment replaceable with Javadoc
Reports a regular comment that belongs to a field, method, or class that can be replaced with a Javadoc comment.
Example:
public class Main {
/*
* Hello,
*/
// World!
void f() {
}
}
After the quick-fix is applied:
public class Main {
/**
* Hello,
* World!
*/
void f() {
}
}
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Java, 233.SNAPSHOT |
Last modified: 13 July 2023