org.sonar.l10n.plsqlopen.rules.plsql.ComparisonWithBoolean.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!
Remove literal boolean values from comparisons to improve readability.
Noncompliant Code Example
if var = true then ...
if var = false then ...
Compliant Solution
if var then ...
if not var then ...