1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Fix even more missed nullability-related inspections

This commit is contained in:
Bartłomiej Dach 2023-07-27 22:10:41 +02:00
parent 1e9b927b50
commit 3c923b9e81
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ namespace osu.Game.Tournament.Components
private Box flash = null!;
public TournamentBeatmapPanel(TournamentBeatmap beatmap, string mod = "")
public TournamentBeatmapPanel(TournamentBeatmap? beatmap, string mod = "")
{
Beatmap = beatmap;
this.mod = mod;

View File

@ -195,7 +195,7 @@ namespace osu.Game.Tournament.Screens.MapPool
if (CurrentMatch.Value == null)
return;
if (CurrentMatch.Value.Round.Value.Beatmaps.All(b => b.Beatmap.OnlineID != beatmapId))
if (CurrentMatch.Value.Round.Value.Beatmaps.All(b => b.Beatmap?.OnlineID != beatmapId))
// don't attempt to add if the beatmap isn't in our pool
return;