No products in the cart.
< 1 min read
Manageability
Medium
Lightning
SF-0056
When a function returns a value explicitly but the code path does not, it might be a typing mistake, especially in a large function.
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; }
30 min
See the PMD documentation article: ConsistentReturn.
There was a problem reporting this post.
Please confirm you want to block this member.
You will no longer be able to:
Please allow a few minutes for this process to complete.