Skip to content

Instantly share code, notes, and snippets.

@Yousha
Last active March 6, 2017 15:26
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 Yousha/e64e0bd144bc94b464ce8acf9c045111 to your computer and use it in GitHub Desktop.
Save Yousha/e64e0bd144bc94b464ce8acf9c045111 to your computer and use it in GitHub Desktop.
The optional parameter for Java. (Trick)
public void myMethod(final Object object, final boolean... enabled)
{
// ...
if (enabled[0])
{
// top kek
}
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment