From 2290bbb59c842c6bb4721fa624208db1bdfe1fed Mon Sep 17 00:00:00 2001 From: Ashton McGlone Date: Mon, 17 Feb 2025 15:23:59 -0500 Subject: [PATCH] Update 'Code_Smells_Patterns/Excessive_Conditionals.md' --- Code_Smells_Patterns/Excessive_Conditionals.md | 7 +++++++ 1 file changed, 7 insertions(+) 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