You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

311 B

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