Skip to content

Instantly share code, notes, and snippets.

@Bigcheese
Created September 12, 2013 07:36
Show Gist options
  • Save Bigcheese/6534059 to your computer and use it in GitHub Desktop.
Save Bigcheese/6534059 to your computer and use it in GitHub Desktop.
/**
* Sleeps for the specified number of milliseconds.
*/
protected void snooze( long milliseconds )
{
try
{
Thread.sleep( milliseconds );
}
catch( InterruptedException e ){}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment