jellyfin/Emby.Server.Implementations/AppBase
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
..
BaseApplicationPaths.cs Enable nullable reference types for Emby.Server.Implementations 2021-05-20 22:48:53 +02:00
BaseConfigurationManager.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
ConfigurationHelper.cs Use our own Contains extension 2021-12-20 13:31:07 +01:00