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
Several methods and are missing nullability annotations (@NonNull or @Nullable).
This results in a poor experience in languages like Kotlin because method arguments and return types do not contain the correct nullable or non-null types.
The text was updated successfully, but these errors were encountered:
Hi @NickAcPT - I would be happy to review/merge a pull request that added such annotations. It may be best to do a single file first to make sure we are all on the same page. For example, the @NonNull annotation in the code today is org.eclipse.lsp4j.jsonrpc.validation.NonNull which may not be what you expect?
Several methods and are missing nullability annotations (
@NonNull
or@Nullable
).This results in a poor experience in languages like Kotlin because method arguments and return types do not contain the correct nullable or non-null types.
The text was updated successfully, but these errors were encountered: