()
| 1182 | } |
| 1183 | |
| 1184 | public Player getControlVote() { |
| 1185 | Player result = null; |
| 1186 | long maxValue = 0; |
| 1187 | for (Player p : getPlayers()) { |
| 1188 | Long v = p.getHighestControlVote(); |
| 1189 | if (v != null && v > maxValue) { |
| 1190 | maxValue = v; |
| 1191 | result = p; |
| 1192 | } |
| 1193 | } |
| 1194 | return result; |
| 1195 | } |
| 1196 | |
| 1197 | public void incPiledGuessedSA() { |
| 1198 | numPiledGuessedSA++; |
no test coverage detected