Skip to content

Instantly share code, notes, and snippets.

@cosbor11
Created July 14, 2016 15:22
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 cosbor11/235bc193a8b7796264f84547452a95e6 to your computer and use it in GitHub Desktop.
Save cosbor11/235bc193a8b7796264f84547452a95e6 to your computer and use it in GitHub Desktop.
Print the second page results
System.out.println("\nPage 2:");
for (final Player player : page2)
{
System.out.println(player.getLastName() + ", " + player.getFirstName());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment