Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 18, 2020 08:20
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 jasongorman/90c03b6b19a8bc080274678d4f1809c9 to your computer and use it in GitHub Desktop.
Save jasongorman/90c03b6b19a8bc080274678d4f1809c9 to your computer and use it in GitHub Desktop.
public List<Video> getRentedVideos() {
return rentals;
}
public void addRental(Video video) {
rentals.add(video);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment