1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:43:20 +08:00

remove ??

This commit is contained in:
Jorolf 2017-04-12 11:25:32 +02:00
parent e285d33f8c
commit 98ce9e0724

View File

@ -75,7 +75,7 @@ namespace osu.Game.Screens.Select
else else
ratingsContainer.Hide(); ratingsContainer.Hide();
if ((beatmap.Metric?.Retries.Any() ?? false) && (beatmap.Metric?.Fails.Any() ?? false)) if ((beatmap.Metric?.Retries.Any() ?? false) && beatmap.Metric.Fails.Any())
{ {
var retries = beatmap.Metric.Retries; var retries = beatmap.Metric.Retries;
var fails = beatmap.Metric.Fails; var fails = beatmap.Metric.Fails;