org.sonar.l10n.plsqlopen.rules.plsql.UselessParenthesis.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zpa-checks Show documentation
Show all versions of zpa-checks Show documentation
Z PL/SQL Analyzer :: Checks
The newest version!
Useless parentheses can sometimes be misleading and so should be removed.
Noncompliant Code Example
if ((a = b)) then ...
Compliant Solution
if (a = b) then ...