1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 03:02:55 +08:00

Remove incorrectly added null coalesce

This commit is contained in:
Dean Herbert 2021-07-19 02:17:21 +09:00 committed by GitHub
parent 1661c0c681
commit 1cc9e504cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ namespace osu.Game.Overlays.Wiki
private void onCurrentChange(ValueChangedEvent<LocalisableString?> e)
{
if (e?.NewValue == TabControl.Items.LastOrDefault())
if (e.NewValue == TabControl.Items.LastOrDefault())
return;
if (e.NewValue == IndexPageString)