if "== null" and "!= null" are inverted ?
Status: Alpha
Brought to you by:
akkumar
We have seen that "== null" is put where a "!= null" is
expected and viceversa.
For example:
if (selectedInstance.schedulingEnabled() != null
&& selectedInstance.schedulingEnabled().booleanValue
()) ...
Were uncompiled with JreversePro 1.4.1:
if (selectedInstance.schedulingEnabled() == null
&& selectedInstance.schedulingEnabled().booleanValue
())