Skip to content

Instantly share code, notes, and snippets.

@nunomazer
Created July 8, 2020 12:02
Show Gist options
  • Save nunomazer/4feab5f3d23132ca75ab2e2b50a0d561 to your computer and use it in GitHub Desktop.
Save nunomazer/4feab5f3d23132ca75ab2e2b50a0d561 to your computer and use it in GitHub Desktop.
Boa 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
}
... code on false ...
return false
}
... log error maybe ...
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment