Skip to content

Instantly share code, notes, and snippets.

@LordNairu
Created August 2, 2014 16:11
Show Gist options
  • Save LordNairu/e9d8413aae95f4289188 to your computer and use it in GitHub Desktop.
Save LordNairu/e9d8413aae95f4289188 to your computer and use it in GitHub Desktop.
public Date calculateEndTime (Film film) {
calendar.setTime(film.getStartTime());
calendar.add(Calendar.MINUTE, film.getRunTimeInMinutes());
return calendar.getTime();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment