}
//END CUSTOM
List toRemove = selectedGraph.getGraphManager().getDisplayedParticipants();
Iterator it = choiceMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry me = (Map.Entry) it.next();
if (toRemove.contains(me.getValue())) {
it.remove();
}