Skip to content

Instantly share code, notes, and snippets.

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