jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV
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
..
DirectRecorder.cs Flush to disk async where possible 2022-01-22 23:36:42 +01:00
EmbyTV.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
EncodedRecorder.cs Don't allow throwing System.Exception (#8378) 2022-09-11 17:56:41 -06:00
EntryPoint.cs Make MediaBrowser.MediaEncoding warnings free 2020-08-20 12:16:24 +02:00
EpgChannelData.cs Enable nullable for more files 2021-08-28 17:32:09 +02:00
IRecorder.cs Fix warnings in EmbyTV 2021-10-03 21:41:22 -04:00
ItemDataProvider.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
NfoConfigurationExtensions.cs Clean up Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs 2019-12-04 21:39:27 +01:00
RecordingHelper.cs Merge pull request #7544 from jaantaponen/long-filename-fix 2022-05-20 18:30:56 -04:00
SeriesTimerManager.cs Remove unused using directives 2021-04-17 11:37:55 +01:00
TimerManager.cs Enable nullable for more files 2021-08-28 17:32:09 +02:00