Skip to content

Instantly share code, notes, and snippets.

@peterhughesdev
Created March 14, 2013 10:10
Show Gist options
  • Save peterhughesdev/5160206 to your computer and use it in GitHub Desktop.
Save peterhughesdev/5160206 to your computer and use it in GitHub Desktop.
oh god why
public class Foo {
public static void whee() { System.out.println("Oh god why"); }
public static void main(String[] args) {
Foo nothing = null;
nothing.whee();
((Foo)null).whee();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment