NullableVoid
void-returning methods should not be annotated with @Nullable, since they cannot return null

Severity
WARNING
Tags
Style

The problem

void-returning methods cannot return null.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("NullableVoid") to the enclosing element.