jellyfin/Emby.Server.Implementations/LiveTv
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
..
EmbyTV Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Listings Don't allow throwing System.Exception (#8378) 2022-09-11 17:56:41 -06:00
TunerHosts Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
LiveTvConfigurationFactory.cs Fix some warnings 2021-05-28 14:33:54 +02:00
LiveTvDtoService.cs Optimize Guid comparisons 2022-02-21 14:15:09 +01:00
LiveTvManager.cs Optimize Guid comparisons 2022-02-21 14:15:09 +01:00
LiveTvMediaSourceProvider.cs Ignore published server url for local access 2021-09-07 11:48:06 +02:00
RefreshGuideScheduledTask.cs Fix some warnings 2022-02-15 18:59:46 +01:00