mirror of
https://github.com/ppy/osu
synced 2024-12-27 17:32:56 +00:00
Use standard list instead of bindable list
No reason to use a bindable list there, as `CollectionChanged` was never subscribed to.
This commit is contained in:
parent
8193691cbc
commit
e8c2483f19
@ -37,7 +37,7 @@ namespace osu.Game.Online.Chat
|
||||
/// <summary>
|
||||
/// Keeps a stack of recently closed channels
|
||||
/// </summary>
|
||||
private readonly BindableList<ClosedChannel> closedChannels = new BindableList<ClosedChannel>();
|
||||
private readonly List<ClosedChannel> closedChannels = new List<ClosedChannel>();
|
||||
|
||||
// For efficiency purposes, this constant bounds the number of closed channels we store.
|
||||
// This number is somewhat arbitrary; future developers are free to modify it.
|
||||
|
Loading…
Reference in New Issue
Block a user