jellyfin/Emby.Server.Implementations/Library
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
..
Resolvers Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Validators
CoreResolutionIgnoreRule.cs
ExclusiveLiveStream.cs
IgnorePatterns.cs
LibraryManager.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
LiveStreamHelper.cs
MediaSourceManager.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
MediaStreamSelector.cs Fix default audio selection ignoring type 2022-05-17 21:03:51 +02:00
MusicManager.cs Optimize Guid comparisons 2022-02-21 14:15:09 +01:00
PathExtensions.cs Add ability to search by - 2021-12-31 08:51:50 -07:00
ResolverHelper.cs
SearchEngine.cs Merge pull request #7604 from Jellifi007/fixes-diactritics 2022-05-20 18:30:56 -04:00
SplashscreenPostScanTask.cs suggestions from review 2022-01-10 10:59:32 -07:00
UserDataManager.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
UserViewManager.cs Optimize Guid comparisons 2022-02-21 14:15:09 +01:00