AvoidRedundantBoolExpression - nonkit/SmallWikiPad GitHub Wiki

AvoidRedundantBoolExpression

Use

If debug Then

instead of

If debug = "True" Then

and use

If Not[debug](debug) Then

instead of

If debug = "False" Then

See Also