1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 02:39:53 +08:00

Remove unnecessary null check

This commit is contained in:
Dean Herbert
2024-11-28 15:42:37 +09:00
Unverified
parent 8b68859d9d
commit 70eee8882a
@@ -77,7 +77,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
private void hideCloseButton()
{
closeButton?.ResizeWidthTo(0, 100, Easing.OutQuint)
closeButton.ResizeWidthTo(0, 100, Easing.OutQuint)
.Then().FadeOut().Expire();
}