Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 974 → Rev 975

/kickup/trunk/src/ak/kickup/core/model/ParticipantManager.java
164,6 → 164,7
throws ModelException
{
try {
participant.getEvent().removeParticipant(participant);
HibernateUtil.currentSession().delete(participant);
}
catch(HibernateException ex)
/kickup/trunk/src/ak/kickup/core/model/Event.java
445,4 → 445,9
{
this.participants = participants;
}
 
protected void removeParticipant(Participant participant)
{
participants.remove(participant);
}
}