All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.plsqlopen.rules.plsql.ComparisonWithBoolean.html Maven / Gradle / Ivy

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 ...




© 2015 - 2024 Weber Informatics LLC | Privacy Policy