jellyfin/Emby.Server.Implementations/Data
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
..
BaseSqliteRepository.cs Revert "chore: Add a read only connection for routes like Shows/NextUp" 2022-03-06 09:30:47 -07:00
CleanDatabaseScheduledTask.cs fix SA1508 2020-06-15 10:45:55 +12:00
ManagedConnection.cs Revert "chore: Add a read only connection for routes like Shows/NextUp" 2022-03-06 09:30:47 -07:00
SqliteExtensions.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
SqliteItemRepository.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
SqliteUserDataRepository.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
SynchronouseMode.cs Fix warnings in Data 2021-10-02 13:03:04 -04:00
TempStoreMode.cs Fix warnings in Data 2021-10-02 13:03:04 -04:00
TypeMapper.cs Remove some unnecessary allocations 2021-05-24 00:30:41 +02:00