jellyfin/Jellyfin.Server.Implementat...
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
..
Activity Optimize Guid comparisons 2022-02-21 14:15:09 +01:00
Devices Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Events Fix some warnings 2021-11-09 13:14:31 +01:00
Migrations Fix devices migration 2021-08-13 21:28:17 -04:00
ModelConfiguration Fix typo in comment and remove useless ones 2021-09-07 19:25:04 +02:00
Properties Validate the new username when renaming 2021-02-17 11:30:14 +01:00
Security Merge pull request #7774 from crobibero/api-authinfo 2022-05-20 23:00:22 -04:00
Users Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
ValueConverters Enable nullable for Jellyfin.Server.Implementations 2020-12-12 11:20:48 -05:00
Jellyfin.Server.Implementations.csproj Backport pull request #8433 from jellyfin/release-10.8.z 2022-09-23 23:12:50 -04:00
JellyfinDb.cs Fix typo in comment and remove useless ones 2021-09-07 19:25:04 +02:00
JellyfinDbProvider.cs Log EFCore migrations 2021-09-06 21:15:31 +02:00
ModelBuilderExtensions.cs Update StyleCop 2021-12-24 18:28:27 +01:00