1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00

Remove no longer necessary switch case

This commit is contained in:
Salman Ahmed 2022-08-24 10:50:40 +03:00
parent 8f4a2b4936
commit e378c5b866

View File

@ -118,11 +118,6 @@ namespace osu.Game.Screens.Spectate
foreach ((int userId, SpectatorState state) in e.NewItems.AsNonNull())
onUserStateChanged(userId, state);
break;
case NotifyDictionaryChangedAction.Remove:
foreach ((int userId, SpectatorState state) in e.OldItems.AsNonNull())
onUserStateChanged(userId, state);
break;
}
}