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:
Dave Hoover
2009-05-23 02:00:23 +00:00
parent 3c5c5e6ba5
commit cf1ad4ac4d
12 changed files with 43 additions and 45 deletions
@@ -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++;
}
}