mirror of
https://github.com/osukey/osukey.git
synced 2025-05-25 23:47:30 +09: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]
|
[BackgroundDependencyLoader]
|
||||||
private void load(BeatmapDifficultyCache difficultyCache)
|
private void load(BeatmapDifficultyCache difficultyCache)
|
||||||
{
|
{
|
||||||
var metadata = beatmap.BeatmapInfo?.Metadata ?? new BeatmapMetadata();
|
var metadata = beatmap.BeatmapInfo.Metadata;
|
||||||
|
|
||||||
AutoSizeAxes = Axes.Both;
|
AutoSizeAxes = Axes.Both;
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user