Prune trailing whitespace & foreachize loops.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@840 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -376,8 +376,8 @@ public class Table
|
||||
int[][] teams = tconfig.teamMemberIndices;
|
||||
for (int[] team : teams) {
|
||||
int teamCount = 0;
|
||||
for (int jj=0; jj < team.length; jj++) {
|
||||
if (players[team[jj]] != null) {
|
||||
for (int element : team) {
|
||||
if (players[element] != null) {
|
||||
teamCount++;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user