Re: Remove sun.misc.CompoundEnumeration

2015-12-22 Thread Seán Coffey
Looks good! Regards, Sean. On 22/12/2015 15:00, Chris Hegarty wrote: On 22 Dec 2015, at 14:58, Aleksey Shipilev wrote: On 12/22/2015 05:57 PM, Chris Hegarty wrote: http://cr.openjdk.java.net/~chegar/8146000/ Looks good. Thanks. Thanks, -Aleksey P.S. Nice bug ID, pity to waste it on a

Re: Remove sun.misc.CompoundEnumeration

2015-12-22 Thread Chris Hegarty
On 22 Dec 2015, at 14:58, Aleksey Shipilev wrote: > On 12/22/2015 05:57 PM, Chris Hegarty wrote: >> http://cr.openjdk.java.net/~chegar/8146000/ > > Looks good. Thanks. > Thanks, > -Aleksey > > P.S. Nice bug ID, pity to waste it on a trivial thing :D Right. I’m willing to give it up it if yo

Re: Remove sun.misc.CompoundEnumeration

2015-12-22 Thread Chris Hegarty
On 22 Dec 2015, at 14:53, Aleksey Shipilev wrote: > On 12/22/2015 05:41 PM, Chris Hegarty wrote: >> sun.misc.CompoundEnumeration is a utility class that supports enumerating >> over an array of enumerations. It is used in just a single place in the JDK, >> in >> ClassLoader.getResources(String)

Re: Remove sun.misc.CompoundEnumeration

2015-12-22 Thread Aleksey Shipilev
On 12/22/2015 05:57 PM, Chris Hegarty wrote: > http://cr.openjdk.java.net/~chegar/8146000/ Looks good. Thanks, -Aleksey P.S. Nice bug ID, pity to waste it on a trivial thing :D

Re: Remove sun.misc.CompoundEnumeration

2015-12-22 Thread Aleksey Shipilev
On 12/22/2015 05:41 PM, Chris Hegarty wrote: > sun.misc.CompoundEnumeration is a utility class that supports enumerating > over an array of enumerations. It is used in just a single place in the JDK, > in > ClassLoader.getResources(String) to support enumerating over the parent’s > resources as we

Remove sun.misc.CompoundEnumeration

2015-12-22 Thread Chris Hegarty
sun.misc.CompoundEnumeration is a utility class that supports enumerating over an array of enumerations. It is used in just a single place in the JDK, in ClassLoader.getResources(String) to support enumerating over the parent’s resources as well as the current loaders resources. I can find no usage