Fixed some warnings

This commit is contained in:
2026-04-04 05:01:51 +02:00
parent 4aed9b0bb4
commit c197f94631
12 changed files with 129 additions and 131 deletions
@@ -14,7 +14,7 @@ public class ChannelManagerStub : IChannelManager
public void UnregisterChannel(string channelId) => throw new NotImplementedException();
public IChannel? GetChannel(string channelId) => throw new NotImplementedException();
public IChannel GetChannel(string channelId) => throw new NotImplementedException();
public IReadOnlyList<IChannel> GetAllChannels() => throw new NotImplementedException();
}