Get the player whose turn it is after a given player's turn, taking turn order into account. @param playerTurn a Player, or null. @return A Player, whose turn comes after the current player, or null if there are no players in the game.
(final Player playerTurn)
| 801 | * {@code null} if there are no players in the game. |
| 802 | */ |
| 803 | public Player getNextPlayerAfter(final Player playerTurn) { |
| 804 | return getNextPlayerAfter(playerTurn, getTurnOrder()); |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * Get the player whose turn it is after a given player's turn, taking turn |
no test coverage detected