()
| 765 | } |
| 766 | |
| 767 | private void stopComputers() |
| 768 | { |
| 769 | ListIterator<Player> itr = players.listIterator(); |
| 770 | |
| 771 | while(itr.hasNext()) |
| 772 | { |
| 773 | Player player = itr.next(); |
| 774 | |
| 775 | if(player instanceof ComputerPlayer) |
| 776 | { |
| 777 | ((ComputerPlayer) player).stopThinkFunction(); |
| 778 | } |
| 779 | } |
| 780 | } |
| 781 | |
| 782 | private void startGameMessage(String[] info) throws Exception |
| 783 | { |
no test coverage detected