Hi,
I have a strange behaviour here:
There is one Projekt related to my user.
user.getProjekts(); returns zero Projekts (WRONG)
When I replace the line with
user.getProjekts(new Criteria());
one Projekt is returned (correct).
I really can't follow what is going on here, as method getProjekts() simply
creates an empty Criteria and passes to getProjekts(Criteria c):
public List getProjekts() throws TorqueException
{
if (collProjekts == null)
{
collProjekts = getProjekts(new Criteria(10));
}
return collProjekts;
}
What's that?
Marc
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>