Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove an custom javadoc tag from Intellij-IDEA

I accidentally created a custom javadoc tag in Intellij-IDEA by clicking the light bulb. Does anybody know how to delete it again?

like image 915
Martin Avatar asked Dec 16 '10 13:12

Martin


People also ask

How do I get Javadoc HTML in IntelliJ?

From the main menu, select Tools | Generate JavaDoc. In the dialog that opens, select a scope — a set of files or directories for which you want to generate the reference, and set the output directory where the generated documentation will be placed.

What are Javadoc tags?

The javadoc TagsRepresents the relative path to the generated document's root directory from any generated page. Adds a comment indicating that this API should no longer be used. Adds a Throws subheading to the generated documentation, with the classname and description text.

How do I create a method comment in IntelliJ?

Position the caret before the declaration of the method/function or field to document, type the opening block comment /** , and press Enter . IntelliJ IDEA generates a JSDoc comment with a list of parameters ( @param ) and return values ( @returns ), where applicable.


2 Answers

Settings | Inspections | Declaration has javadoc problems | Additional JavaDoc Tags

like image 181
CrazyCoder Avatar answered Sep 30 '22 12:09

CrazyCoder


This is for IntelliJ IDEA 2017.2.5. Remove the tag from the Additional Javadoc Tags field.

like image 26
BullyWiiPlaza Avatar answered Sep 30 '22 13:09

BullyWiiPlaza