This's a kind feature request,
instead of doing
publicvoidMethodName(@NotNullArgarg1, @NotNullArgarg2, @NotNullArgarg3) {}It's better to be:
@ArgsNotNullpublicvoidMethodName(Argarg1, Argarg2, Argarg3) {}Indicating all parameters should not be null (or nullable).
Thanks.
This's a kind feature request,
instead of doing
It's better to be:
Indicating all parameters should not be null (or nullable).
Thanks.