jellyfin/Jellyfin.Networking
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
..
Configuration Fix various typos 2022-08-15 06:48:34 -04:00
Manager Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Jellyfin.Networking.csproj Bump StyleCop.Analyzers from 1.2.0-beta.406 to 1.2.0-beta.435 (#7726) 2022-05-09 15:24:09 +02:00