Skip to content

Instantly share code, notes, and snippets.

@andypalmer
Last active February 10, 2016 18:59
Show Gist options
  • Save andypalmer/55d4d539b618ef4a6ba2 to your computer and use it in GitHub Desktop.
Save andypalmer/55d4d539b618ef4a6ba2 to your computer and use it in GitHub Desktop.
public Result someMethod() {
Result result = someMethodIDontControl();
if(null == result) {return null;}
// Actually, this is really crap because in reality, I’d just return result, but bear with me!
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment