Skip to content

Commit

Permalink
IChannel does not require Dispose() #2
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriiKh committed Aug 31, 2020
1 parent 3932044 commit 63a7d75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CarefulAudioRepair/Data/Channel - Copy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ public async Task ScanAsync(
{
this.RegisterPatch(patch);
}

this.patchCollection.AddRange(tools.PatchCollection.ToList());
}

/// <summary>
Expand Down
2 changes: 0 additions & 2 deletions CarefulAudioRepair/Data/IChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ internal interface IChannel
bool IsPreprocessed { get; }
int LengthSamples { get; }
int NumberOfPatches { get; }

void Dispose();
Patch[] GetAllPatches();
double[] GetInputRange(int start, int length);
double GetInputSample(int position);
Expand Down

0 comments on commit 63a7d75

Please sign in to comment.