You should change it to ``` if (something != null)...
# random
r
You should change it to
Copy code
if (something != null) {
    doX()
} else if (something == null) {
    doX()
} else {
    doX()
}