Non-depth constructor unneeded now

This commit is contained in:
Matt Nadareski
2025-09-20 16:24:21 -04:00
parent 64b65b0f59
commit c537f9dac9

View File

@@ -29,14 +29,6 @@
/// </summary>
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;