From 6e3f0b2b25ca2bb880cd042a72969ffbb3f78546 Mon Sep 17 00:00:00 2001 From: Ashton McGlone Date: Mon, 17 Feb 2025 15:23:37 -0500 Subject: [PATCH] Update 'Code_Smells_Patterns/index.md' --- Code_Smells_Patterns/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Code_Smells_Patterns/index.md b/Code_Smells_Patterns/index.md index 53f5176..c30ba8d 100644 --- a/Code_Smells_Patterns/index.md +++ b/Code_Smells_Patterns/index.md @@ -4,9 +4,7 @@ [Duplicated Code](./Duplicated_Code.md) -**Excessive Conditionals** - -* Force: Refactoring may be considered if a section of code seems overloaded with conditional statements or switch cases +[Excessive Conditionals](./Excessive_Conditionals.md) * 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.