Skip to content

Instantly share code, notes, and snippets.

@gnomex
Created November 1, 2013 15:25
Show Gist options
  • Save gnomex/7267083 to your computer and use it in GitHub Desktop.
Save gnomex/7267083 to your computer and use it in GitHub Desktop.
Sometimes, happen!
public Boolean haveInstructions(Integer currentIndex) {
try {
instructions.get(currentIndex);
return Boolean.TRUE;
} catch(IndexOutOfBoundsException e) {
return Boolean.FALSE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment