decisions! decisions! ;)
thanks!
danny
Rainer Klute wrote:
Not that I could comment on your patch but this one caught my eyes:
+ private LinkedList functionTokens = new LinkedList();
You should program against the interface, not the class. Therefore the statement should be
private List functionTokens = new LinkedList();
Best regards Rainer Klute
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
