jellyfin/src
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
..
Jellyfin.Extensions Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Jellyfin.MediaEncoding.Hls Remove redundant using directives 2022-09-28 16:26:03 +02:00
Jellyfin.MediaEncoding.Keyframes Backport pull request #8433 from jellyfin/release-10.8.z 2022-09-23 23:12:50 -04:00