Skip to content

Instantly share code, notes, and snippets.

@ericwoodruff
Created November 21, 2013 17:30
Show Gist options
  • Save ericwoodruff/7585967 to your computer and use it in GitHub Desktop.
Save ericwoodruff/7585967 to your computer and use it in GitHub Desktop.
try/finally pattern
public Object methodToOverride () {
try {
return super.methodToOverride ();
} finally {
// do post-super stuff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment