From 3406f3c4b3ad570a3dfe47679cd254997a5eaa0c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 3 Oct 2024 12:51:49 -0400 Subject: [PATCH] Remove this qualifiers --- BinaryObjectScanner/ProtectionProgress.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BinaryObjectScanner/ProtectionProgress.cs b/BinaryObjectScanner/ProtectionProgress.cs index 41546e11..bee13d6e 100644 --- a/BinaryObjectScanner/ProtectionProgress.cs +++ b/BinaryObjectScanner/ProtectionProgress.cs @@ -26,9 +26,9 @@ public ProtectionProgress(string? filename, float percentage, string? protection) { - this.Filename = filename; - this.Percentage = percentage; - this.Protection = protection; + Filename = filename; + Percentage = percentage; + Protection = protection; } } }