jellyfin/MediaBrowser.Common
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
..
2022-08-18 13:56:23 +02:00
2022-04-09 20:17:07 +02:00
2021-08-04 14:40:09 +02:00
2020-04-01 15:30:53 +02:00
2021-06-06 18:11:51 +02:00