Created
July 14, 2016 15:13
-
-
Save cosbor11/1bc79e6a78e62843b49db571a0989e59 to your computer and use it in GitHub Desktop.
Print the first page results
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.out.println("\nPage 1:"); | |
for (final Player player : page1) | |
{ | |
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