[cp-patches] FYI: Fix --enable-collections

2007-04-06 Thread Mark Wielaard
Hi, This fixes --enable-collections by adding the new java.util classes and by using Iterators explicitly (not through the enhanced for-loop which only works with java.lang.Iterable). But I am not sure it really makes sense to keep this supported. Could someone that uses it test that it still

Re: [cp-patches] FYI: Fix --enable-collections

2007-04-06 Thread Andrew John Hughes
On Friday 06 April 2007 16:54, Mark Wielaard wrote: Hi, This fixes --enable-collections by adding the new java.util classes and by using Iterators explicitly (not through the enhanced for-loop which only works with java.lang.Iterable). But I am not sure it really makes sense to keep this

Re: [cp-patches] FYI: Fix --enable-collections

2007-04-06 Thread Mark Wielaard
Hi Andrew, On Fri, 2007-04-06 at 18:42 +0100, Andrew John Hughes wrote: Did you run a VM with this patch applied? It breaks a normal build, due to a redundant semi-colon in Hashtable, which causes it to go into an infinite loop when populating Properties. Patch attached. Thanks and so