jellyfin/Emby.Server.Implementations/LiveTv/TunerHosts
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
..
HdHomerun Fix some warnings 2022-02-14 14:46:04 +01:00
BaseTunerHost.cs Fix some warnings 2021-09-25 20:32:53 +02:00
LiveStream.cs Flush to disk async where possible 2022-01-22 23:36:42 +01:00
M3uParser.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
M3UTunerHost.cs Make IgnoreDts configurable for M3U tuner 2022-08-18 01:08:03 +02:00
SharedHttpStream.cs Always create TaskCompletionSource<T> with TaskCreationOptions.RunContinuationsAsynchronously 2022-01-22 17:06:57 +01:00