diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
index ca52b80cca..bb22c31fe6 100644
--- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
+++ b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
@@ -137,7 +137,8 @@ namespace Emby.Server.Implementations.AppBase
/// Manually pre-loads a factory so that it is available pre system initialisation.
///
/// Class to register.
- public virtual void RegisterConfiguration() where T : IConfigurationFactory
+ public virtual void RegisterConfiguration()
+ where T : IConfigurationFactory
{
IConfigurationFactory factory = (IConfigurationFactory)Activator.CreateInstance(typeof(T));