Avoid Functions With Inconsistent Return Types

< 1 min read

Impact Area

Manageability

Severity

Medium

Affected Element

Lightning

Rule ID #

SF-0056

Impact #

When a function returns a value explicitly but the code path does not, it might be a typing mistake, especially in a large function.

Remediation #

Refactor the code to use consisten return statements. // Ok function foo() { if (condition1) {return true;} return false; } // Bad function bar() { if (condition1) {return;} return false; }

Time to fix #

30 min

References #

See the PMD documentation article: ConsistentReturn.

Updated on March 21, 2025
Was it helpful ?