jellyfin/MediaBrowser.Common/Plugins
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
..
BasePlugin.cs Enable nullable reference types for MediaBrowser.Common 2021-05-05 12:57:01 +02:00
BasePluginOfT.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
IHasPluginConfiguration.cs Changes as requested 2020-12-23 16:28:50 +00:00
IPlugin.cs Enable nullable reference types for MediaBrowser.Common 2021-05-05 12:57:01 +02:00
IPluginAssembly.cs Fix some warnings 2020-02-23 12:11:43 +01:00
IPluginManager.cs Enable nullable reference types for MediaBrowser.Common 2021-05-05 12:57:01 +02:00
IPluginServiceRegistrator.cs Update MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs 2020-11-09 11:26:06 +00:00
LocalPlugin.cs Enable nullable reference types for MediaBrowser.Common 2021-05-05 12:57:01 +02:00
PluginManifest.cs Enable nullable reference types for MediaBrowser.Common 2021-05-05 12:57:01 +02:00