Code Smell 09 - Dead Code
Code that is no longer used or needed.
TL;DR: Do not keep code "just in case I need it".
Problems
Maintainability
Solutions
Remove the code
KISS
Examples
Gold plating code or Yagni code.
Exceptions
Avoid metaprogramming. When used, it is very ...
maximilianocontieri.com1 min read