Skip to content

Instantly share code, notes, and snippets.

@tkroman
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkroman/1a070bdebefd8e32f1cb to your computer and use it in GitHub Desktop.
Save tkroman/1a070bdebefd8e32f1cb to your computer and use it in GitHub Desktop.
public T fn(int required) {
return fn(required, "defaultString");
}
public T fn(int required, String optional) {
fn(required, optional, false);
}
public T fn(int required, String optional, boolean flag) {
// BUSINESS SHIT
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment