From 9b96072982b635d299be6a0a50f82968cd77ca51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Alp=C3=A1r=20Zsolt?= Date: Sun, 17 Aug 2025 00:32:05 +0200 Subject: [PATCH] Removes unused object instantiation Removes the unnecessary instantiation of the OpenIdConnectConfigurationRetriever. The object is instantiated directly in the ConfigurationManager constructor, making the explicit instantiation redundant. --- Source/ProofOfConcept/Utilities/TeslaOIDCConfigurationManager.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/ProofOfConcept/Utilities/TeslaOIDCConfigurationManager.cs b/Source/ProofOfConcept/Utilities/TeslaOIDCConfigurationManager.cs index 99df482..0e3031e 100644 --- a/Source/ProofOfConcept/Utilities/TeslaOIDCConfigurationManager.cs +++ b/Source/ProofOfConcept/Utilities/TeslaOIDCConfigurationManager.cs @@ -15,7 +15,6 @@ public sealed class TeslaOIDCConfigurationManager : IConfigurationManager(metadataAddress, new OpenIdConnectConfigurationRetriever(), new HttpDocumentRetriever()); }