Skip to content

Commit

Permalink
removed virtual keyword from Dispose method of AbstractDownloadServic…
Browse files Browse the repository at this point in the history
…e.cs
  • Loading branch information
bezzad committed Sep 18, 2024
1 parent dcd2ae2 commit 6389f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Downloader/AbstractDownloadService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ public void AddLogger(ILogger logger)
/// <summary>
/// Disposes of the download service, including clearing the current download operation.
/// </summary>
public virtual void Dispose()
public void Dispose()
{
Clear().Wait();
}
Expand Down

0 comments on commit 6389f7c

Please sign in to comment.