Skip to content

Instantly share code, notes, and snippets.

@renaro
Created October 19, 2016 03:10
Show Gist options
  • Save renaro/4d70aea5c15fc0322b894f989efbff29 to your computer and use it in GitHub Desktop.
Save renaro/4d70aea5c15fc0322b894f989efbff29 to your computer and use it in GitHub Desktop.
public boolean scheduleRomanticDinner(String name1, String name2, int table, Date time){
boolean isTableAvailable = isTableAvailableAtTime(table, time);
if(isTableAvailable){
server.confirmSchedule(name1, name2, table, time);
} else {
//whatever
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment