jellyfin/Emby.Server.Implementations/ScheduledTasks
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
..
Tasks Merge pull request #7512 from crobibero/update-plugin 2022-03-29 02:24:51 -04:00
Triggers Fix some warnings 2022-02-15 18:59:46 +01:00
ScheduledTaskWorker.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
TaskManager.cs Fix warnings in ScheduledTasks 2021-10-02 12:53:51 -04:00