mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
@"" -> string.Empty
This commit is contained in:
@ -177,7 +177,7 @@ namespace osu.Game.Overlays.Direct
|
||||
|
||||
private string pluralize(string prefix, int value)
|
||||
{
|
||||
return $@"{value} {prefix}" + (value == 1 ? @"" : @"s");
|
||||
return $@"{value} {prefix}" + (value == 1 ? string.Empty : @"s");
|
||||
}
|
||||
|
||||
private class DirectSearchTextBox : SearchTextBox
|
||||
|
Reference in New Issue
Block a user