mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Remove not required null conditional
This commit is contained in:
@ -154,7 +154,7 @@ namespace osu.Game.Screens.OnlinePlay.Match
|
|||||||
// fallback is to allow this class to operate when there is no parent OnlineScreen (testing purposes).
|
// fallback is to allow this class to operate when there is no parent OnlineScreen (testing purposes).
|
||||||
var targetScreen = (Screen)ParentScreen ?? this;
|
var targetScreen = (Screen)ParentScreen ?? this;
|
||||||
|
|
||||||
targetScreen?.Push(CreateGameplayScreen());
|
targetScreen.Push(CreateGameplayScreen());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Reference in New Issue
Block a user