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:
Bartłomiej Dach 2021-06-03 13:59:25 +02:00
parent 8193691cbc
commit e8c2483f19

View File

@ -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.