Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kepocnhh/4a06a7c38a91e45bb86b3c0783606edf to your computer and use it in GitHub Desktop.
Save kepocnhh/4a06a7c38a91e45bb86b3c0783606edf to your computer and use it in GitHub Desktop.
private boolean numberIsNegative = false;
public void setNumber(int number)
{
this.number = number;
numberIsNegative = number < 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment