All Downloads are FREE. Search and download functionalities are using the official Maven repository.

errorprone.bugpattern.NullTernary.md Maven / Gradle / Ivy

The newest version!
If a conditional expression evaluates to `null`, unboxing it will result in a
`NullPointerException`.

For example:

```java
int x = flag ? foo : null:
```

If `flag` is false, `null` will be auto-unboxed from an `Integer` to `int`,
resulting in a NullPointerException.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy