NullableConstructor
Constructors should not be annotated with @Nullable since they cannot return null

Severity
WARNING
Tags
Style

The problem

Constructors never return null.

Suppression

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