Long Method Smell

Back to Code Smells

Methods that are too long to understand at a glance. Long methods try to do too many things, making them hard to understand, test, and reuse. The refactoring is usually Extract Method — pull cohesive blocks into well-named helper methods.

property refactoring long-method