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
To make an API null-safe is currently a lot of work: you'll have to place @NonNull annotations almost everywhere.
We could add an option to toggle the default to be non-null; then only exceptions would have to either be annotated with a new @Nullable annotation or use Optional.
The text was updated successfully, but these errors were encountered:
To make an API null-safe is currently a lot of work: you'll have to place
@NonNull
annotations almost everywhere.We could add an option to toggle the default to be non-null; then only exceptions would have to either be annotated with a new
@Nullable
annotation or useOptional
.The text was updated successfully, but these errors were encountered: