Re: ModuleDescriptor#toString(Set<>, String) may produce unexpected results.

2017-12-12 Thread Andrej Golovnin
> Thanks, this should be using toLowerCase(Locale). I'll create a bug for > this. Thanks, Alan! Best regards, Andrej Golovnin

Re: ModuleDescriptor#toString(Set<>, String) may produce unexpected results.

2017-12-12 Thread Alan Bateman
On 12/12/2017 07:20, Andrej Golovnin wrote: Hi all, the ModuleDescriptor#toString(Set<>, String) method uses String#toLowerCase() in the line 2607 without specifying a locale. And this may lead to unexpected results when you start the JVM for example with the Turkish locale. This can be fixed by

ModuleDescriptor#toString(Set<>, String) may produce unexpected results.

2017-12-11 Thread Andrej Golovnin
Hi all, the ModuleDescriptor#toString(Set<>, String) method uses String#toLowerCase() in the line 2607 without specifying a locale. And this may lead to unexpected results when you start the JVM for example with the Turkish locale. This can be fixed by using String#toLowerCase(Locale) with Locale.