Browse Source

Fix compiler warning for CodeMigration.cs (#14390)

gnattu 2 days ago
parent
commit
9ac8c2a2fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jellyfin.Server/Migrations/Stages/CodeMigration.cs

+ 1 - 1
Jellyfin.Server/Migrations/Stages/CodeMigration.cs

@@ -82,7 +82,7 @@ internal class CodeMigration(Type migrationType, JellyfinMigrationAttribute meta
         }
     }
 
-    private class NestedStartupLogger<TCategory> : StartupLogger<TCategory>, IStartupLogger<TCategory>
+    private class NestedStartupLogger<TCategory> : StartupLogger<TCategory>
     {
         public NestedStartupLogger(ILogger logger, StartupLogTopic topic) : base(logger, topic)
         {