From b3c9f5bdd4f4b8b595bba0b158b6beb1ecc10ac4 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 14 Nov 2024 10:01:55 -0500 Subject: [PATCH] Resolves Warning CS0109 A class declaration included the new keyword even though the declaration does not override an existing declaration in a base class. The new keyword can be deleted. --- Common.Models/Output/Equipment.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common.Models/Output/Equipment.cs b/Common.Models/Output/Equipment.cs index f6d5411..61f0035 100644 --- a/Common.Models/Output/Equipment.cs +++ b/Common.Models/Output/Equipment.cs @@ -69,7 +69,7 @@ namespace Common.Models.Output public Dictionary TacticalVest { get; set; } public Dictionary Pockets { get; set; } public Dictionary Backpack { get; set; } - public new Dictionary SecuredContainer { get; set; } - public new Dictionary SpecialLoot { get; set; } + public Dictionary SecuredContainer { get; set; } + public Dictionary SpecialLoot { get; set; } } }