Skip to content

Instantly share code, notes, and snippets.

@Zerophase
Last active December 18, 2015 19:49
Show Gist options
  • Save Zerophase/5836180 to your computer and use it in GitHub Desktop.
Save Zerophase/5836180 to your computer and use it in GitHub Desktop.
Example code
private void setBooleanArg (char argChar, boolean value)
{
booleanArgs.get(argChar).setBoolean(value);
}
public boolean getBoolean(char arg)
{
return falseIfNull (booleanArgs.get(arg).getBoolean());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment