Skip to content

Instantly share code, notes, and snippets.

@nunomazer
Last active July 8, 2020 11:43
Show Gist options
  • Save nunomazer/026b518df7b9561c1bc24da45a08a99a to your computer and use it in GitHub Desktop.
Save nunomazer/026b518df7b9561c1bc24da45a08a99a to your computer and use it in GitHub Desktop.
Má prática com IF-ELSE
public boolean myFunction() {
boolean result = someObject.someMethod();
if (result) {
... some code ...
return true;
} else {
... log error maybe ...
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment