How to disable "Identifier Expected" error in Javadoc?

已回答

Hi,

I have the following code:

 /**
* @see Test.
*/
private void f() { }

This causes the following error to show in the editor:

Furthermore, the file is shown as erroneous in the project tree. This makes it very hard to find the real errors. Real errors being the code/files causing a compilation failure.

How do I disable all "error checking" within Javadoc? I have already disabled all Javadoc inspections to no avail.

1

Set lower highlighting level for the Java | Javadoc | Declaration has problems in Javadoc references inspection or suppress it for the statement.

-1

请先登录再写评论。