org.sonar.l10n.plsqlopen.rules.plsql.CollapsibleIfStatements.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!
Merging collapsible if
statements increases the code's readability.
Noncompliant Code Example
if condition1 then
if condition2 then
-- code
end if;
end if;
Compliant Solution
if condition1 and condition2 then
-- code
end if;