Skip to content
#

nullability-analysis

Here are 8 public repositories matching this topic...

Language: All
Filter by language
msridhar
msridhar commented Jan 22, 2022

This would allow for more localized suppressions. Say we have a method foo(Object o) in an annotated third-party library where o has no type annotation, but o really should be @Nullable, as foo() can handle being passed null as a parameter. In code checked by NullAway, say you write:

void bigMethod() {
  ...
  foo(null); // NullAway reports an error
  ...
}

I beli

Improve this page

Add a description, image, and links to the nullability-analysis topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the nullability-analysis topic, visit your repo's landing page and select "manage topics."

Learn more