1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 23:23:04 +08:00

Make field readonly

This commit is contained in:
Craftplacer 2020-01-25 17:03:39 +01:00
parent 9e6fde7d09
commit 65644731e0

View File

@ -35,7 +35,7 @@ namespace osu.Game.Online.Chat
private Bindable<bool> notifyOnMention;
private Bindable<bool> notifyOnChat;
private Bindable<User> localUser;
private BindableList<Channel> joinedChannels = new BindableList<Channel>();
private readonly BindableList<Channel> joinedChannels = new BindableList<Channel>();
[BackgroundDependencyLoader]
private void load(OsuConfigManager config, IAPIProvider api)