Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 31 → Rev 32

/kickup/trunk/src/ak/kickup/core/model/Participant.java
327,7 → 327,8
if(acts != null) {
for(Iterator i = acts.iterator(); i.hasNext(); ) {
ParticipantAct a = (ParticipantAct)i.next();
actsMap.put(a.getAct().getId(), a);
if(a.getAct() != null)
actsMap.put(a.getAct().getId(), a);
}
}
}