1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 20:17:21 +08:00

Remove unused placeholder friend in DummyAPI implementation

This commit is contained in:
Dean Herbert 2020-12-18 15:25:12 +09:00
parent 57c5d45c02
commit 99b670627a

View File

@ -19,11 +19,7 @@ namespace osu.Game.Online.API
Id = 1001,
});
public BindableList<User> Friends { get; } = new BindableList<User>(new User
{
Username = @"Dummy's friend",
Id = 2002,
}.Yield());
public BindableList<User> Friends { get; } = new BindableList<User>();
public Bindable<UserActivity> Activity { get; } = new Bindable<UserActivity>();