use of fr.guiguilechat.jcelechat.model.jcesi.compiler.compiled.responses.M_get_standings_3 in project JCELechat by guiguilechat.
the class EveCharacter method getStanding.
public ObjHolder<Float> getStanding(int id) {
ObjHolder<Float> ret = cacheStanding.get(id);
if (ret == null) {
MapHolder<Integer, M_get_standings_3> std = getStandings();
synchronized (cacheStanding) {
ret = cacheStanding.get(id);
if (ret == null) {
ret = std.at(id, new M_get_standings_3()).map(m -> m.standing);
cacheStanding.put(id, ret);
}
}
}
return ret;
}
Aggregations