Howto update the JavaDoc of a function in IntelliJ

Viewed 2227

I have a function A(int x) with my JavaDoc /** * @param a */

Now I add a new parameter to A -> A(int x, int y).

Is there a shortkey to update the JavaDoc or do I have to do it myself by adding the line manually ?

1 Answers

in the link above Mark McDonald mentions the option of:

For anyone else searching for how to get IntelliJ to update javadoc after a code change, you can set this in Settings -> IDE Settings -> Keymap.

Related