Especially for Turkish speaking users using "tr" as their system default
locale : strings for technical stuff (URLs, tag names, constants...)
must not be lower cased with the default locale, as 'I' doesn't becomes
'i' like in other locales such as "en", but becomes 'ı'.
/* Here we only allow an upgrade from HTTP to HTTPS, not the reverse (we don't want a forged HTTP header by an eventual attacker to force fallback to HTTP) */
finalbooleanunzipped=header.gzip()&&(header.mime().toLowerCase().equals("application/x-tar"));// if true, then the httpc has unzipped the file
finalbooleanunzipped=header.gzip()&&(header.mime().toLowerCase(Locale.ROOT).equals("application/x-tar"));// if true, then the httpc has unzipped the file