Browse Source

Update Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
BaronGreenback 4 years ago
parent
commit
0e872ca65c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs

+ 2 - 1
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.
         /// </summary>
         /// <typeparam name="T">Class to register.</typeparam>
-        public virtual void RegisterConfiguration<T>() where T : IConfigurationFactory
+        public virtual void RegisterConfiguration<T>()
+            where T : IConfigurationFactory
         {
             IConfigurationFactory factory = (IConfigurationFactory)Activator.CreateInstance(typeof(T));