jellyfin/Jellyfin.Drawing.Skia
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
..
Properties Adjusted AssemblyCopyright attribute values. 2019-03-14 22:17:56 +01:00
Jellyfin.Drawing.Skia.csproj Update Jellyfin.Drawing.Skia.csproj 2022-09-09 07:40:55 -06:00
PercentPlayedDrawer.cs Simplify arithmetic 2020-07-19 14:13:56 -04:00
PlayedIndicatorDrawer.cs Reuse paint objects. 2020-07-19 14:39:11 -04:00
SkiaCodecException.cs Remove unnecessary base constructor calls. 2020-07-19 14:14:44 -04:00
SkiaEncoder.cs Minor cleanup 2022-08-18 13:56:23 +02:00
SkiaException.cs Remove unnecessary base constructor calls. 2020-07-19 14:14:44 -04:00
SkiaHelper.cs Fix various typos 2022-08-15 06:48:34 -04:00
SplashscreenBuilder.cs suggestions from review 2022-01-10 10:59:32 -07:00
StripCollageBuilder.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
UnplayedCountIndicator.cs Reuse paint objects. 2020-07-19 14:39:11 -04:00