Re: RFR: 8283772: Make sun.net.dns.ResolverConfiguration sealed

2022-03-29 Thread Daniel Fuchs
On Mon, 28 Mar 2022 21:44:36 GMT, Aleksei Efimov wrote: > The following fix seals `sun.net.dns.ResolverConfiguration` abstract class. > `sun.net.dns.ResolverConfigurationImpl` is the only permitted subclass which > has two O/S specific implementations: for `Windows` and `Unix` architectures. >

Re: RFR: 8283772: Make sun.net.dns.ResolverConfiguration sealed

2022-03-29 Thread Jaikiran Pai
On Mon, 28 Mar 2022 21:44:36 GMT, Aleksei Efimov wrote: > The following fix seals `sun.net.dns.ResolverConfiguration` abstract class. > `sun.net.dns.ResolverConfigurationImpl` is the only permitted subclass which > has two O/S specific implementations: for `Windows` and `Unix` architectures. >

Re: RFR: 8283772: Make sun.net.dns.ResolverConfiguration sealed

2022-03-29 Thread Daniel Fuchs
On Mon, 28 Mar 2022 21:44:36 GMT, Aleksei Efimov wrote: > The following fix seals `sun.net.dns.ResolverConfiguration` abstract class. > `sun.net.dns.ResolverConfigurationImpl` is the only permitted subclass which > has two O/S specific implementations: for `Windows` and `Unix` architectures. >

RFR: 8283772: Make sun.net.dns.ResolverConfiguration sealed

2022-03-28 Thread Aleksei Efimov
The following fix seals `sun.net.dns.ResolverConfiguration` abstract class. `sun.net.dns.ResolverConfigurationImpl` is the only permitted subclass which has two O/S specific implementations: for `Windows` and `Unix` architectures. Both of them are marked as `final`. Testing: `jdk-tier1`, `jdk-ti