On Sat, 5 Feb 2022 20:29:50 GMT, Xue-Lei Andrew Fan wrote:
> In [JDK-8281289](https://bugs.openjdk.java.net/browse/JDK-8281289), the
> SSLParameters class was updated with the patch:
>
> - return Collections.unmodifiableList(new
> ArrayList<>(sniNames.values()));
> + return List.copyOf(sniName
On Sun, 6 Feb 2022 22:11:06 GMT, Claes Redestad wrote:
> This looks like an appropriate solution which avoids the minor compatibility
> risk introduced by the previous change - and you might even end up being more
> efficient both when setting and reading the names/matchers.
>
> (Since we're g
On Sat, 5 Feb 2022 20:29:50 GMT, Xue-Lei Andrew Fan wrote:
> In [JDK-8281289](https://bugs.openjdk.java.net/browse/JDK-8281289), the
> SSLParameters class was updated with the patch:
>
> - return Collections.unmodifiableList(new
> ArrayList<>(sniNames.values()));
> + return List.copyOf(sniName