Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save simpleprogrammer-shared/5e5833e008958540e1464d4f5ef8e1a9 to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/5e5833e008958540e1464d4f5ef8e1a9 to your computer and use it in GitHub Desktop.
Types of Duplication in Code 5
public void GoForRun()
{
GetDressed();
Run();
Shower();
}
public void LiftWeights()
{
GetDressed();
Lift();
Shower();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment