You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find output such as ((node==null) == false) wordy and hard to read.
I suggest that it should be output as node!=null.
More generally, conditions should never include == false or == true.
The text was updated successfully, but these errors were encountered:
I find output such as
((node==null) == false)
wordy and hard to read.I suggest that it should be output as
node!=null
.More generally, conditions should never include
== false
or== true
.The text was updated successfully, but these errors were encountered: