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

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

The newest version!
A NULL statement at the same level of other statements is useless, so should be removed.

Noncompliant Code Example

BEGIN
  var := 1;
  NULL; -- this NULL statement can be removed
END

Compliant Solution

BEGIN
  var := 1;
END




© 2015 - 2025 Weber Informatics LLC | Privacy Policy