Skip to content

Instantly share code, notes, and snippets.

@Michcioperz
Created June 2, 2013 11:27
Show Gist options
  • Save Michcioperz/5693363 to your computer and use it in GitHub Desktop.
Save Michcioperz/5693363 to your computer and use it in GitHub Desktop.
unless.
/**
* Michcioperz's unnecessary complexity
* @author Michcioperz <michcioperz@gmail.com>
*/
public abstract class unless {
public unless(boolean condition) {
if (!condition) {
o();
}
}
public abstract void o();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment