jellyfin/Emby.Server.Implementations/Channels
Bond_009 a9a5fcde81 Use ArgumentNullException.ThrowIfNull helper method
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)

```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```

```
ArgumentNullException.ThrowIfNull($1);
```
2022-10-06 20:21:23 +02:00
..
ChannelDynamicMediaSourceProvider.cs Clean up and document ChannelManager.cs and implement suggestions 2020-04-15 15:00:45 -04:00
ChannelImageProvider.cs Merge branch 'master' into warnings-cleanup1 2020-04-22 13:44:20 +00:00
ChannelManager.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
ChannelPostScanTask.cs Use BaseItemKind where possible 2021-12-12 06:11:27 -07:00
RefreshChannelsScheduledTask.cs Fix some warnings 2022-02-15 18:59:46 +01:00