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

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

The newest version!

Useless parentheses can sometimes be misleading and so should be removed.

Noncompliant Code Example

if ((a = b)) then ...

Compliant Solution

if (a = b) then ...




© 2015 - 2024 Weber Informatics LLC | Privacy Policy