Pattern: Unnecessary parenthesis
Issue: -
AVOID using parenthesis when not needed.
Example of correct code:
a = b;
Example of incorrect code:
a = (b);
Pattern: Unnecessary parenthesis
Issue: -
AVOID using parenthesis when not needed.
Example of correct code:
a = b;
Example of incorrect code:
a = (b);