Skip to content

Instantly share code, notes, and snippets.

@stolarczykt
Last active January 27, 2020 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stolarczykt/ae44dadd8426c406f11be716c107b1d7 to your computer and use it in GitHub Desktop.
Save stolarczykt/ae44dadd8426c406f11be716c107b1d7 to your computer and use it in GitHub Desktop.
Functional cohesion example
public class PolishTaxPolicy implements TaxPolicy {
public Money calculateTax(Money amount) {
//method body
return tax;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment