Remove SimpleProgress

This commit is contained in:
Patrick Barron
2024-02-06 09:50:46 -05:00
parent 34a89fdefd
commit 8698b90594
11 changed files with 18 additions and 45 deletions

View File

@@ -1,17 +0,0 @@
#pragma warning disable CS1591
#pragma warning disable CA1003
using System;
namespace MediaBrowser.Common.Progress
{
public class SimpleProgress<T> : IProgress<T>
{
public event EventHandler<T>? ProgressChanged;
public void Report(T value)
{
ProgressChanged?.Invoke(this, value);
}
}
}