You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In July the @NotNullByDefault annotation was added. This annotation can be used with target TYPE and PACKAGE, but sometimes you would want to have your fields, parameters and return types in (almost) every package in your module be default not null.
Therefore I propose to add the MODULE element type to the target annotation
So: @Target(value={TYPE,PACKAGE,MODULE}) instead of @Target(value={TYPE,PACKAGE})
This would also require changes in any annotation processor, IDE or language server that acts on the @NotNullByDefault. I don't know to what extent that is part of this repo.
The text was updated successfully, but these errors were encountered:
In July the
@NotNullByDefault
annotation was added. This annotation can be used with target TYPE and PACKAGE, but sometimes you would want to have your fields, parameters and return types in (almost) every package in your module be default not null.Therefore I propose to add the MODULE element type to the target annotation
So:
@Target(value={TYPE,PACKAGE,MODULE})
instead of@Target(value={TYPE,PACKAGE})
This would also require changes in any annotation processor, IDE or language server that acts on the
@NotNullByDefault
. I don't know to what extent that is part of this repo.The text was updated successfully, but these errors were encountered: