diff --git a/Code_Smells_Patterns/index.md b/Code_Smells_Patterns/index.md index ed86f67..53f5176 100644 --- a/Code_Smells_Patterns/index.md +++ b/Code_Smells_Patterns/index.md @@ -2,11 +2,7 @@ **Code Smells** are often signs that refactoring could be needed. That is not always the case, but these "smells" should be looked at further to dethermine if there is a need for refactoring. -**Duplicated Code** - -* Force: Refactoring may be considered if a common structure is recongized among related methods. - -* Solution: It may be possible to generalize smaller methods to allow them to work as one. However, you must be careful to not over generalize a method and allow it to have more power than nessecary. A good metric to measure by is that a method should have between 6-8 meaningful lines of code. +[Duplicated Code](./Duplicated_Code.md) **Excessive Conditionals**