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

Remove unnecessary parameter

This commit is contained in:
smoogipoo 2021-04-09 18:41:58 +09:00
parent 7cbc8f2695
commit d2c37e6cf8

View File

@ -22,7 +22,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
public void AddClock(int userId, IClock source) => trackedData[userId] = new TrackedUserData(source);
public void RemoveClock(int userId, IClock source) => trackedData.Remove(userId);
public void RemoveClock(int userId) => trackedData.Remove(userId);
protected override void OnIncomingFrames(int userId, FrameDataBundle bundle)
{