Removed unnecessary comment

This commit is contained in:
Peer Schütt 2025-10-23 15:26:21 +02:00
parent 40e225c24b
commit 4b94e50cb7

View File

@ -530,9 +530,6 @@ public abstract class BaseProvider : IProvider, ISecretId
{
try
{
// we need to remove line breaks from the JSON string otherwise the server might have problems with parsing the call
// var withoutLineBreak = additionalUserProvidedParameters.Replace("\n", string.Empty);
var json = $"{{{additionalUserProvidedParameters}}}";
var jsonDoc = JsonSerializer.Deserialize<JsonElement>(json, JSON_SERIALIZER_OPTIONS);
var dict = this.ConvertToDictionary(jsonDoc);