diff --git a/IntroSkipper/Analyzers/SegmentAnalyzer.cs b/IntroSkipper/Analyzers/SegmentAnalyzer.cs deleted file mode 100644 index bb3a179..0000000 --- a/IntroSkipper/Analyzers/SegmentAnalyzer.cs +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (C) 2024 Intro-Skipper contributors -// SPDX-License-Identifier: GPL-3.0-only. - -using System.Collections.Generic; -using System.Threading; -using IntroSkipper.Data; -using Microsoft.Extensions.Logging; - -namespace IntroSkipper.Analyzers; - -/// -/// Chapter name analyzer. -/// -public class SegmentAnalyzer : IMediaFileAnalyzer -{ - private readonly ILogger _logger; - - /// - /// Initializes a new instance of the class. - /// - /// Logger. - public SegmentAnalyzer(ILogger logger) - { - _logger = logger; - } - - /// - public IReadOnlyList AnalyzeMediaFiles( - IReadOnlyList analysisQueue, - AnalysisMode mode, - CancellationToken cancellationToken) - { - return analysisQueue; - } -}