Editor provides errors on if conditions that contains == NULL or !=NULL, which always returns false.
Example of Incorrect Code:
IF (db_state_ == NULL) THEN
RETURN NULL;
Example of Correct Code:
IF (db_state_ IS NULL) THEN
RETURN NULL;
Actions Available: