Skip to content

Simplify condition checks

Snehit Sah requested to merge (removed):condition-checks-update into master

As discussed here : !5 (comment 383763)

if( expr == true ) is now if( expr )

if( expr == false ) is now if( !expr )

Merge request reports