Created
July 5, 2016 14:52
-
-
Save cosbor11/71782e0104fbd50bc746f5fd446b0ee3 to your computer and use it in GitHub Desktop.
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
List<Player> inactivePlayers = manager.executeQuery(query); | |
// There should only be one inactivePlayer: Calvin Johnson | |
for (final Player player : inactivePlayers) | |
{ | |
System.out.println(player.getFirstName() + " " + player.getLastName() + " is not active."); | |
} | |
manager.executeDelete(query); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment