diff options
| author | cvium <clausvium@gmail.com> | 2021-12-19 10:27:57 +0100 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-12-19 10:27:57 +0100 |
| commit | 76c2775d8c9b6eebe9638ba3b388746cb968e922 (patch) | |
| tree | ce4302acfb4a4d05bc3528d89925d93fdbb3da5f /Emby.Server.Implementations/AppBase | |
| parent | cd760943a9d554c560f35be2ee134969a224f92a (diff) | |
Use static lambdas
Diffstat (limited to 'Emby.Server.Implementations/AppBase')
| -rw-r--r-- | Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs index d38535634..5ba4749a6 100644 --- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs +++ b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs @@ -301,7 +301,7 @@ namespace Emby.Server.Implementations.AppBase { return _configurations.GetOrAdd( key, - (k, configurationManager) => + static (k, configurationManager) => { var file = configurationManager.GetConfigurationFile(k); |
