mirror of
https://github.com/ppy/osu
synced 2024-12-15 19:36:34 +00:00
Remove unnecessary parameter
This commit is contained in:
parent
7cbc8f2695
commit
d2c37e6cf8
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user