cleanup: eliminate unused MiscHistory class

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@582 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-02-24 21:25:52 +00:00
parent 6524f9c22a
commit e98727b601

View file

@ -1230,42 +1230,8 @@ public class Micropolis
}
public History history = new History();
static class MiscHistory
{
int resPop;
int comPop;
int indPop;
int resValve;
int comValve;
int indValve;
int crimeRamp;
int polluteRamp;
int landValueAverage;
int crimeAverage;
int pollutionAverage;
int gameLevel;
int cityClass;
int cityScore;
}
void setValves()
{
MiscHistory hist = new MiscHistory();
hist.resPop = resPop;
hist.comPop = comPop;
hist.indPop = indPop;
hist.resValve = resValve;
hist.comValve = comValve;
hist.indValve = indValve;
hist.crimeRamp = crimeRamp;
hist.polluteRamp = polluteRamp;
hist.landValueAverage = landValueAverage;
hist.crimeAverage = crimeAverage;
hist.pollutionAverage = pollutionAverage;
hist.gameLevel = gameLevel;
hist.cityClass = evaluation.cityClass;
hist.cityScore = evaluation.cityScore;
double normResPop = (double)resPop / 8.0;
totalPop = (int) (normResPop + comPop + indPop);