Nixed unused variable references.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@686 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-07-26 22:04:34 +00:00
parent dd285192d9
commit eb935ecfab
5 changed files with 2 additions and 6 deletions
@@ -363,7 +363,7 @@ public abstract class PuzzleManager extends GameManager
int size = gevents.length;
boolean before = compareBeforeApply();
for (int ii = 0, pos = 0; ii < size; ii++) {
for (int ii = 0; ii < size; ii++) {
int gevent = gevents[ii];
Board cboard = (states == null) ? null : states[ii];