Skip to content

Commit

Permalink
Update ImportManager.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoCoderMatrix86 committed Aug 29, 2024
1 parent 2dfa371 commit fe13f85
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions AudioCuesheetEditor/Services/IO/ImportManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
using AudioCuesheetEditor.Extensions;
using AudioCuesheetEditor.Model.AudioCuesheet;
using AudioCuesheetEditor.Model.IO;
using AudioCuesheetEditor.Model.IO.Audio;
using AudioCuesheetEditor.Model.IO.Import;
using AudioCuesheetEditor.Model.Options;
using AudioCuesheetEditor.Model.Utility;
using Blazorise;
using Microsoft.JSInterop;

namespace AudioCuesheetEditor.Services.IO
{
Expand All @@ -34,12 +32,11 @@ public enum ImportFileType
Textfile,
Audiofile
}
public class ImportManager(SessionStateContainer sessionStateContainer, ILocalStorageOptionsProvider localStorageOptionsProvider, TextImportService textImportService, CuesheetImportService cuesheetImportService)
public class ImportManager(SessionStateContainer sessionStateContainer, ILocalStorageOptionsProvider localStorageOptionsProvider, TextImportService textImportService)
{
private readonly SessionStateContainer _sessionStateContainer = sessionStateContainer;
private readonly ILocalStorageOptionsProvider _localStorageOptionsProvider = localStorageOptionsProvider;
private readonly TextImportService _textImportService = textImportService;
private readonly CuesheetImportService _cuesheetImportService = cuesheetImportService;

public async Task<Dictionary<IFileEntry, ImportFileType>> ImportFilesAsync(IEnumerable<IFileEntry> files)
{
Expand Down

0 comments on commit fe13f85

Please sign in to comment.