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