Skip to content

Instantly share code, notes, and snippets.

@nunomazer
Created July 8, 2020 12:01
Show Gist options
  • Select an option

  • Save nunomazer/8080b1ac9c0fceedd33695f7da9caae8 to your computer and use it in GitHub Desktop.

Select an option

Save nunomazer/8080b1ac9c0fceedd33695f7da9caae8 to your computer and use it in GitHub Desktop.
Má prática com IF ELSE aninhado
public boolean myFunction() {
boolean result = someObject.someMethod();
if (result) {
... some code ...
if (second-test) {
... code on true ...
return true
} else {
... code on false ...
return false
}
} else {
... log error maybe ...
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment