Skip to content

Instantly share code, notes, and snippets.

@dmytrodanylyk
Created March 11, 2017 12:23
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 dmytrodanylyk/387618fe05b72f3ac25f38cf66372cdd to your computer and use it in GitHub Desktop.
Save dmytrodanylyk/387618fe05b72f3ac25f38cf66372cdd to your computer and use it in GitHub Desktop.
// MainActivity.java
...
private void someMethod(int a, int b, int c, int d) {
if (a > b) {
if (b > c) {
if (c > d) {
if (d > a) {
// some logic
}
}
}
}
}
...
@eeiaao
Copy link

eeiaao commented Mar 11, 2017

...but why?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment