1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Fix incorrect nullability specification

This commit is contained in:
Salman Ahmed 2023-10-21 01:10:06 +03:00
parent ab3b51e4a0
commit 976ae62214

View File

@ -19,7 +19,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Legacy
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
private Container lightContainer = null!;
private Drawable? light = null!;
private Drawable light = null!;
public LegacyColumnBackground()
{