From 3821afe3888fe2a6f32639f8a542f10db4cc45b7 Mon Sep 17 00:00:00 2001 From: Ashton McGlone Date: Mon, 17 Feb 2025 15:28:00 -0500 Subject: [PATCH] Add 'Code_Smells_Patterns/Big_Methods.md' --- Code_Smells_Patterns/Big_Methods.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Code_Smells_Patterns/Big_Methods.md diff --git a/Code_Smells_Patterns/Big_Methods.md b/Code_Smells_Patterns/Big_Methods.md new file mode 100644 index 0000000..cce8c67 --- /dev/null +++ b/Code_Smells_Patterns/Big_Methods.md @@ -0,0 +1,7 @@ +**Big Methods** + +* Force: Refactoring may be possible when a method is getting too large. (over 7 lines of active code) + +* Solution: It may be possible to break this method up into smaller methods. Methods shoudl have a clear purpose and should not take on work it does not have to. + +[Back to Index](./index.md) \ No newline at end of file