Hey... Does someone here knows where I can change the standard position of the "NotNull" annotation? In default (when implementing the override-methods) it gets placed right before the "ItemStack". But I want it below (or above as long as it's consistent) the "Override" annotation.
And also is there a possibility to setup a warning/inspection when no "NotNull" or "Nullable" annotation was found?
How it is:
@Override
public @NotNull ItemStack getItemStack(@NotNull Player player) {
// Do something
}```
How I want it to be:
```Java
@Override
@NotNull
public ItemStack getItemStack(@NotNull Player player) {
// Do something
}```
The parent method is annotated (manually when created):
```Java
@NotNull
public abstract ItemStack getItemStack(@NotNull Player player);```