In this line:
public Map getAll(BusinessTargetPK pkBusinessTargetId) throws Exception
I am getting this error:
NPath Complexity is 32,768 (max allowed is 200)
And in this line:
public Map getAll( Long RLE_ROLE_ID ) throws Exception {
I get this error:
The method getAll() has an NPath complexity of 2048
I am completely unaware of what is NPath Complexity and what it means.
Can someone give advice how to avoid this type of error?
NPath complexity is the number of execution paths possible for a given code i.e. the number of ways the given code can get executed (ignoring cycles).
Cyclomatic complexity refers to the number of possible execution paths inside a given piece of code—for instance, a function. The more decision structures you use, the more possible branches there are for your code. Cyclomatic complexity is especially important when it comes to testing.
This Link: https://modess.io/npath-complexity-cyclomatic-complexity-explained/
explains it very well as:
The NPath complexity of a method is the number of acyclic execution paths through that method.
This means you should avoid long functions with a lot of (nested) if/else statements.
So my advice would be:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With