mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Remove no longer necessary switch case
This commit is contained in:
@ -118,11 +118,6 @@ namespace osu.Game.Screens.Spectate
|
|||||||
foreach ((int userId, SpectatorState state) in e.NewItems.AsNonNull())
|
foreach ((int userId, SpectatorState state) in e.NewItems.AsNonNull())
|
||||||
onUserStateChanged(userId, state);
|
onUserStateChanged(userId, state);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NotifyDictionaryChangedAction.Remove:
|
|
||||||
foreach ((int userId, SpectatorState state) in e.OldItems.AsNonNull())
|
|
||||||
onUserStateChanged(userId, state);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user