On Tue, 30 Apr 2002 08:50, [EMAIL PROTECTED] wrote:
>
> private static Hashtable hasRunList = new Hashtable();
>
A static hashtable indexed on target name is going to cause weirdness when you
start mixing <do> with <ant> and <antcall>. It really should be indexed
using {project, target-name}. Or using the Target object.
What might be better is to move this state across to Project. This would also
let us have <do> and depends="" work off the same set of executed targets.
--
Adam
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>