jellyfin/MediaBrowser.MediaEncoding
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
..
Attachments Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
BdInfo Fix warning: Qualifier is redundant (#2149) 2021-10-03 11:01:40 +07:00
Configuration Add some analyzers to MediaBrowser.MediaEncoding 2020-08-04 17:08:09 +02:00
Encoder Backport pull request #8280 from jellyfin/release-10.8.z 2022-09-23 23:09:36 -04:00
Probing Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Properties Add tests for EncoderValidator 2019-09-28 19:41:34 +02:00
Subtitles Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
MediaBrowser.MediaEncoding.csproj Backport pull request #8115 from jellyfin/release-10.8.z 2022-07-20 19:29:09 -04:00