Why does IDEA show JavaDoc as an error?

/** * @param string * @throws ApplicationException */ 

IDEA highlight the line and say "No documentation found." Why is this so?

+7
source share
2 answers

Write some documentation for the string parameter, or configure the Declaration verification parameters using the Javadoc verification parameters so that such problems are not reported:

Declaration has Javadoc problems

+9
source

First, the String type must have capital S.

Then you should configure your intellij to ignore or warn on javadoc

0
source

All Articles