Boolean valid = null;
if (valid == null) {
log.info("******");
}
I have the expression above, I wanted to check if Boolean
value is null
and if it is then execute statement inside if clause, but what happened is that it throws me a NullPointerException
. What should I do to have my if clause evaluated with that given condition valid == null
.
Thanks in advance