Skip to content

Instantly share code, notes, and snippets.

@jmahony
Created May 4, 2014 15:18
Show Gist options
  • Save jmahony/8e816be938f33aed9f0c to your computer and use it in GitHub Desktop.
Save jmahony/8e816be938f33aed9f0c to your computer and use it in GitHub Desktop.
// Bad
if (user.authFlag() == AUTHORISED) {
// Code
}
// Good
if (user.isLoggedIn()) {
// Code
}
// Bad
/**
*
* Returns the meta keywords of the article
*
* @return a list of keywords
*/
public List<String> getMetaKeywords() {
return document.getMetaKeywords();
}
// Good
public List<String> getMetaKeywords() {
return document.getMetaKeywords();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment