Skip to content

Instantly share code, notes, and snippets.

@rewbs
Created October 4, 2010 20:21
Show Gist options
  • Save rewbs/610353 to your computer and use it in GitHub Desktop.
Save rewbs/610353 to your computer and use it in GitHub Desktop.
public class Foo {
public int doStuff() {
int x = 0;
x++;
if (x > 0) {
System.out.println("Bar");
}
return x;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment