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

org.sonar.l10n.oe.rules.rssw-oe.compiler.warning.15090.html Maven / Gradle / Ivy

The newest version!

This issue is raised whenever the OpenEdge compiler finds code which will never be executed.

Noncompliant Code Example

PROCEDURE Test:
  MESSAGE "Test".
  RETURN.
  MESSAGE "Test2". /* RETURN statement makes this MESSAGE unreachable */
END PROCEDURE.

Compliant Solution

PROCEDURE Test:
  MESSAGE "Test".
  MESSAGE "Test2".
  RETURN.
END PROCEDURE.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy