List recs = new ArrayList();
for(Iterator i = in.scoreMap.entrySet().iterator(); i.hasNext(); ) {
Map.Entry tmpRec = (Map.Entry) i.next();
recs.add(new ToupleFloatInt((float)((Short) tmpRec.getKey()).shortValue(),
((Integer) tmpRec.getValue()).intValue()));
}
return getTopScoreGroups(recs, numBoardCards);
}