You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

326 B

Excessive Conditionals

  • Force: Refactoring may be considered if a section of code seems overloaded with conditional statements or switch cases

  • Solution: It may be possible to break these conditionals up into smaller, more conscise methods that are easier to read and have a clear purpose.

Back to Index