On 15 Feb 2002, Stefan Bodewig <[EMAIL PROTECTED]> wrote: > I'll see whether I can isolate the problem.
Yep. The old sysproperty code would create a new Properties instance backed by the old System.properties. This in turn means that the keys of the old system properties will only be part of the Enumeration returned by Properties#propertyNames but not by Hashtable#keys, which Project uses to scan through the system properties. Fixed to copy all old system properties into the new Properties instance explicitly. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
