jellyfin/Emby.Server.Implementations
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
..
2020-04-19 13:39:12 -04:00
2022-02-21 14:15:09 +01:00
2021-12-27 14:20:05 +00:00
2022-02-21 14:15:09 +01:00
2021-12-24 18:28:27 +01:00
2021-12-19 10:27:57 +01:00
2022-02-21 14:15:09 +01:00
2021-10-02 11:54:31 -04:00