1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00

Remove unnecessary null checks

This commit is contained in:
Cootz 2023-06-02 12:00:03 +03:00
parent 4c7cca101e
commit 9d4ba5d64a

View File

@ -501,7 +501,7 @@ namespace osu.Game.Overlays.Mods
base.PopIn();
aboveColumnsContent?
aboveColumnsContent
.FadeIn(fade_in_duration, Easing.OutQuint)
.MoveToY(0, fade_in_duration, Easing.OutQuint);
@ -559,7 +559,7 @@ namespace osu.Game.Overlays.Mods
base.PopOut();
aboveColumnsContent?
aboveColumnsContent
.FadeOut(fade_out_duration / 2, Easing.OutQuint)
.MoveToY(-distance, fade_out_duration / 2, Easing.OutQuint);