瀏覽代碼

Fix compiler warning for CodeMigration.cs (#14390)

gnattu 2 天之前
父節點
當前提交
9ac8c2a2fa
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)
         {