From 5bfcc5d4b890cce49f71f3d5a7fbf7eda10fd61c Mon Sep 17 00:00:00 2001 From: Gabriela Trutan Date: Mon, 30 Sep 2024 13:56:32 +0200 Subject: [PATCH] Fix quality gate --- src/SLCore/State/ServerConnectionsProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SLCore/State/ServerConnectionsProvider.cs b/src/SLCore/State/ServerConnectionsProvider.cs index c20818047..73c4fd134 100644 --- a/src/SLCore/State/ServerConnectionsProvider.cs +++ b/src/SLCore/State/ServerConnectionsProvider.cs @@ -47,7 +47,7 @@ public Dictionary GetServerConnections() return succeeded ? GetServerConnectionConfigurations(serverConnections).ToDictionary(conf => conf.connectionId) : []; } - private List GetServerConnectionConfigurations(IReadOnlyList serverConnections) + private static List GetServerConnectionConfigurations(IReadOnlyList serverConnections) { var serverConnectionConfigurations = new List(); foreach (var serverConnection in serverConnections)