1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 06:23:39 +08:00

Remove useless null check

This commit is contained in:
Andrei Zavatski
2019-12-01 03:56:03 +03:00
Unverified
parent 0ac4675546
commit f375db368f
+1 -3
View File
@@ -43,9 +43,7 @@ namespace osu.Game.Users.Drawables
protected override bool OnClick(ClickEvent e)
{
if (Country != null)
rankingsOverlay?.ShowCountry(Country);
rankingsOverlay?.ShowCountry(Country);
return true;
}
}