diff --git a/Code_Smells_Patterns/Excessive_Conditionals.md b/Code_Smells_Patterns/Excessive_Conditionals.md index e69de29..695d772 100644 --- a/Code_Smells_Patterns/Excessive_Conditionals.md +++ b/Code_Smells_Patterns/Excessive_Conditionals.md @@ -0,0 +1,7 @@ +**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](./index.md) \ No newline at end of file