aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2024-02-06 09:50:46 -0500
committerPatrick Barron <barronpm@gmail.com>2024-02-06 09:50:46 -0500
commit8698b905947860ed59db1634e3765d78217d362d (patch)
tree5bd4b4efd439a99940a507459f0177c7a5d42513 /MediaBrowser.Common
parent34a89fdefd47d4007d5222af9f71fbf7c3a7a1b8 (diff)
Remove SimpleProgress
Diffstat (limited to 'MediaBrowser.Common')
-rw-r--r--MediaBrowser.Common/Progress/SimpleProgress.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/MediaBrowser.Common/Progress/SimpleProgress.cs b/MediaBrowser.Common/Progress/SimpleProgress.cs
deleted file mode 100644
index 7071f2bc3..000000000
--- a/MediaBrowser.Common/Progress/SimpleProgress.cs
+++ /dev/null
@@ -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);
- }
- }
-}