We've hit a point where it'd be really nice to have the recursive save
stuff that was commented out with:
#* FIXME! the following code can cause an infinite loop, needs more
thought
shows the infinite loop: System.out.println("Entering save for " +
this);
#if ($pVars.size() != 0)
Could I re-add this with cycle checking? E.g. something like:
private save(Connection conn, HashSet alreadySaved)
{
if (!alreadySaved.contains(this))
{
...
}
}
Thanks,
Stephen
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>