Since then they have reinstalled windows setting the language to English and it works. I believe this is because there are various places in NeoGradle that use toLowerCase and toUpperCase without specifying a Locale. I would make a PR (and still can), but I am unsure whether I should be using Locale.ROOT or Locale.ENGLISH given the places in NeoGradle that do make use of specifying a Locale use a mixture of the two.
One of the testers for Mekanism has a computer set to Turkish. They were having issues importing and building the project with the following error: https://gist.github.com/pupnewfster/a58642d1fa7fe26247e853be51c78869
Since then they have reinstalled windows setting the language to English and it works. I believe this is because there are various places in NeoGradle that use
toLowerCase
andtoUpperCase
without specifying aLocale
. I would make a PR (and still can), but I am unsure whether I should be usingLocale.ROOT
orLocale.ENGLISH
given the places in NeoGradle that do make use of specifying aLocale
use a mixture of the two.