Inline Method

Definition:

This is the inverse of Extract Method; it is including the body of a method in the code that calls it to make the intent more clear.

Triggers:

Often, inline method helps us see the larger structure of code, and is just an intermediate step to further refactoring, including an Extract Method with a slightly different scope.

Forces:

length of method

Resources:

?