Problem:
If you press ENTER on the code above, IDEA won't prefill the javadoc, because of the annotation presence.
before:
-------
@Nullable <<---------- BECAUSE OF THIS
/**<CURSOR HERE>
public static int foo (String i_param) {
return 1;
}
After:
-------
@Nullable
/**
* <<--------- SHOULD NOT BE EMPTY !!!
*/
public static int foo (String i_param) { return 1; } }
public
/** <caret>1
int foo(int i) {}
I mean position of the @Nullable is wrong. Should be in modifier list.