mirror of
https://github.com/ppy/osu
synced 2025-03-03 18:10:28 +00:00
Remove null conditional
Shouldn't guard against that here.
This commit is contained in:
parent
dc56250a3c
commit
34d1490754
@ -60,7 +60,7 @@ namespace osu.Game.Screens.Play
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(BeatmapDifficultyCache difficultyCache)
|
||||
{
|
||||
var metadata = beatmap.BeatmapInfo?.Metadata ?? new BeatmapMetadata();
|
||||
var metadata = beatmap.BeatmapInfo.Metadata;
|
||||
|
||||
AutoSizeAxes = Axes.Both;
|
||||
Children = new Drawable[]
|
||||
|
Loading…
Reference in New Issue
Block a user