From acd4b01c97e83cc45e5e830475830fc17f83bd86 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 13 Feb 2025 14:37:05 -0500 Subject: [PATCH] Remove unused default parameters --- SabreTools.DatFiles/DepotInformation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.DatFiles/DepotInformation.cs b/SabreTools.DatFiles/DepotInformation.cs index b5c38cda..5ff504fd 100644 --- a/SabreTools.DatFiles/DepotInformation.cs +++ b/SabreTools.DatFiles/DepotInformation.cs @@ -28,7 +28,7 @@ namespace SabreTools.DatFiles /// /// Set active state /// Set depth between 0 and SHA-1's byte length - public DepotInformation(bool isActive, int depth = 4) + public DepotInformation(bool isActive, int depth) : this(null, isActive, depth) { } @@ -39,7 +39,7 @@ namespace SabreTools.DatFiles /// Identifier for the depot /// Set active state /// Set depth between 0 and SHA-1's byte length - public DepotInformation(string? name, bool isActive, int depth = 4) + public DepotInformation(string? name, bool isActive, int depth) { Name = name; IsActive = isActive;