Skip to content

Commit

Permalink
MemoryEfficientChannel is not Disposable #2
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriiKh committed Aug 31, 2020
1 parent 085aca0 commit 3932044
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions CarefulAudioRepair/Data/Channel - Copy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace CarefulAudioRepair.Data
/// <summary>
/// Represents audio samples for one channel.
/// </summary>
internal class MemoryEfficientChannel : IDisposable, IChannel
internal class MemoryEfficientChannel : IChannel
{
private readonly ImmutableArray<double> inputImmutable;
private readonly IAudioProcessingSettings settings;
Expand Down Expand Up @@ -132,11 +132,6 @@ public double GetPredictionErr(int position)
return predictionErr;
}

/// <inheritdoc/>
public void Dispose()
{
}

/// <summary>
/// Gets range of samples from input array.
/// </summary>
Expand Down

0 comments on commit 3932044

Please sign in to comment.