Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 31 → Rev 30

/kickup/trunk/src/ak/kickup/core/model/Participant.java
6,7 → 6,6
import java.util.Collections;
import java.util.Collection;
import java.util.Iterator;
import java.util.ArrayList;
import ak.kickup.util.ModelException;
import ak.kickup.util.ModelSecurityException;
 
42,11 → 41,6
{
}
 
protected void init()
{
acts = new ArrayList();
}
 
/**
*
* @hibernate.property
/kickup/trunk/src/ak/kickup/core/model/ParticipantManager.java
50,9 → 50,7
public Participant create()
throws ModelException
{
Participant p = new Participant();
p.init();
return p;
return new Participant();
}
 
public Participant get(Long id)
/kickup/trunk/src/ak/kickup/core/model/Event.java
45,9 → 45,7
 
protected void init()
{
acts = new ArrayList();
apartments = new ArrayList();
participants = new ArrayList();
acts = new ArrayList();
}
 
/**