From d41cd63ad76771705a01fe582fbfbe5be4096c7e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 22 Sep 2025 21:05:39 -0400 Subject: [PATCH] Use "proper" namespace since it's public --- BinaryObjectScanner/IProgress.cs | 2 +- ProtectionScan/Progress.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/BinaryObjectScanner/IProgress.cs b/BinaryObjectScanner/IProgress.cs index 1352f71d..4d4175cf 100644 --- a/BinaryObjectScanner/IProgress.cs +++ b/BinaryObjectScanner/IProgress.cs @@ -3,7 +3,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. -namespace BinaryObjectScanner +namespace System { /// Defines a provider for progress updates. /// The type of progress update value. diff --git a/ProtectionScan/Progress.cs b/ProtectionScan/Progress.cs index aee9c631..b07d980b 100644 --- a/ProtectionScan/Progress.cs +++ b/ProtectionScan/Progress.cs @@ -6,7 +6,6 @@ using System; using System.Threading; using System.Diagnostics; -using BinaryObjectScanner; namespace ProtectionScan {