RulesUselessParenthesisOn this pageUseless parentheses around expressions should be removed to prevent any misunderstandingUseless parentheses can sometimes be misleading and so should be removed. Noncompliant Code Example if ((a = b)) then ... Compliant Solution if (a = b) then ...