diff --git a/Code_Smells_Patterns/Big_Objects.md b/Code_Smells_Patterns/Big_Objects.md new file mode 100644 index 0000000..54e5603 --- /dev/null +++ b/Code_Smells_Patterns/Big_Objects.md @@ -0,0 +1,7 @@ +**Big Objects** + +* Force: Refactoring may be considered if an object has many methods and variables. + +* Solution: It may be possible to break this object up into a few smaller objects. This can be done for readability, simplicity, and overall funtionality. + +[Back to Index](./index.md) \ No newline at end of file