jellyfin/MediaBrowser.MediaEncoding/Subtitles
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
..
AssWriter.cs Merge pull request #7960 from Shadowghost/subrip-encoder-fix 2022-06-29 01:26:15 -04:00
ISubtitleParser.cs Backport pull request #8087 from jellyfin/release-10.8.z 2022-08-01 14:25:42 -04:00
ISubtitleWriter.cs Make probesize and analyzeduration configurable and simplify circular 2019-11-25 12:07:59 +01:00
JsonWriter.cs Fix JSON subtitle writer 2020-01-02 14:38:13 +01:00
SrtWriter.cs Review usage of string.Substring (part 1) 2020-07-22 13:39:24 +02:00
SsaWriter.cs Merge pull request #7960 from Shadowghost/subrip-encoder-fix 2022-06-29 01:26:15 -04:00
SubtitleEditParser.cs Remove redundant using directives 2022-09-28 16:26:03 +02:00
SubtitleEncoder.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
TtmlWriter.cs Review usage of string.Substring (part 1) 2020-07-22 13:39:24 +02:00
VttWriter.cs Fix WebVTT region to spec 2021-11-04 15:44:15 +01:00