Skip to content

Instantly share code, notes, and snippets.

@dmytrodanylyk
Created March 11, 2017 10:10
Show Gist options
  • Save dmytrodanylyk/67b9ef50b6f9569f15f2659c4db26faf to your computer and use it in GitHub Desktop.
Save dmytrodanylyk/67b9ef50b6f9569f15f2659c4db26faf to your computer and use it in GitHub Desktop.
// MainActivity.java
...
private void someMethod(int variable) {
switch (variable) {
case 1:
System.out.println("1");
case 2:
System.out.println("2");
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment