This commit is contained in:
Michael Peter Christen 2013-06-12 13:23:58 +02:00
parent 7754a1263b
commit fc3ff92c69

View File

@ -163,6 +163,7 @@ public class OrderedScoreMap<E> extends AbstractScoreMap<E> implements ScoreMap<
score = this.map.get(obj);
if (score == null) {
this.map.put(obj, new AtomicInteger(incrementScore));
return;
}
}
score.addAndGet(incrementScore);