Skip to content

Instantly share code, notes, and snippets.

@itsjohncs
Created June 12, 2012 02:17
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 itsjohncs/2913976 to your computer and use it in GitHub Desktop.
Save itsjohncs/2913976 to your computer and use it in GitHub Desktop.
Terrible Code Snippet #1
private boolean compareInts(int one, int two)
{
boolean areEqual = false;
if(one == two)
{
areEqual = true;
}
return areEqual;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment