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

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

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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy