cleanup: remove no-longer-used isBigZone()

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@786 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-08-11 22:43:09 +00:00
parent 2eee88e529
commit 9c6e987f65

View file

@ -371,16 +371,4 @@ public class ToolStroke
return;
}
boolean isBigZone(int tile)
{
if (tile >= RESBASE && tile <= LASTZONE)
return true;
else if (tile >= SMOKEBASE && tile < TINYEXP)
return true;
else if (tile >= COALSMOKE1)
return true;
else
return false;
}
}