Skip to content

Commit c12d3fb

Browse files
committed
Progress doesn't need to be hindered
1 parent 4db1c57 commit c12d3fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
using System;
77
using System.Threading;
88
using System.Diagnostics;
9+
using BinaryObjectScanner;
910

10-
namespace BinaryObjectScanner
11+
namespace ProtectionScan
1112
{
1213
/// <summary>
1314
/// Provides an IProgress{T} that invokes callbacks for each reported progress value.
@@ -21,7 +22,7 @@ namespace BinaryObjectScanner
2122
/// at the time of construction, the callbacks will be invoked on the ThreadPool.
2223
/// </remarks>
2324
/// <see href="https://github.com/dotnet/runtime/blob/main/src/libraries/System.Private.CoreLib/src/System/Progress.cs"/>
24-
public class Progress<T> : IProgress<T> where T : EventArgs
25+
internal class Progress<T> : IProgress<T> where T : EventArgs
2526
{
2627
/// <summary>The synchronization context captured upon construction. This will never be null.</summary>
2728
private readonly SynchronizationContext? _synchronizationContext;

0 commit comments

Comments
 (0)