From c537f9dac9b416e128521cf8ac9412469614086b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 20 Sep 2025 16:24:21 -0400 Subject: [PATCH] Non-depth constructor unneeded now --- BinaryObjectScanner/ProtectionProgress.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/BinaryObjectScanner/ProtectionProgress.cs b/BinaryObjectScanner/ProtectionProgress.cs index 2bb1a718..bff0529b 100644 --- a/BinaryObjectScanner/ProtectionProgress.cs +++ b/BinaryObjectScanner/ProtectionProgress.cs @@ -29,14 +29,6 @@ /// public string? Protection { get; } - public ProtectionProgress(string? filename, float percentage, string? protection) - { - Filename = filename; - Depth = 0; - Percentage = percentage; - Protection = protection; - } - public ProtectionProgress(string? filename, int depth, float percentage, string? protection) { Filename = filename;