The source project of this merge request has been removed.
Simplify condition checks
As discussed here : !5 (comment 383763)
if( expr == true )
is now if( expr )
if( expr == false )
is now if( !expr )
As discussed here : !5 (comment 383763)
if( expr == true )
is now if( expr )
if( expr == false )
is now if( !expr )