From cb8b6703da823f10e4345456ceab742207d12373 Mon Sep 17 00:00:00 2001 From: tr00d Date: Thu, 21 Mar 2024 10:22:57 +0100 Subject: [PATCH] refactor: remove unused 'EnsureSuccessStatusCode' key in appSettings --- Vonage/Configuration.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Vonage/Configuration.cs b/Vonage/Configuration.cs index 1586fb660..2594ea8a8 100644 --- a/Vonage/Configuration.cs +++ b/Vonage/Configuration.cs @@ -32,10 +32,6 @@ private Configuration(IConfiguration configuration) internal Configuration() { var builder = new ConfigurationBuilder() - .AddInMemoryCollection(new Dictionary - { - {"vonage:EnsureSuccessStatusCode", "false"}, - }) .AddJsonFile("settings.json", true, true) .AddJsonFile("appsettings.json", true, true); this.Settings = builder.Build();