mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Replace usages of string.To{Lower,Upper}()
This commit is contained in:
@ -24,7 +24,7 @@ namespace osu.Game.Screens.Select
|
||||
{
|
||||
foreach (Match match in query_syntax_regex.Matches(query))
|
||||
{
|
||||
string key = match.Groups["key"].Value.ToLower();
|
||||
string key = match.Groups["key"].Value.ToLowerInvariant();
|
||||
var op = parseOperator(match.Groups["op"].Value);
|
||||
string value = match.Groups["value"].Value;
|
||||
|
||||
|
Reference in New Issue
Block a user