cosmetics

This commit is contained in:
UbitUmarov
2026-04-27 14:06:55 +01:00
parent b713c3047e
commit d068a68583
4 changed files with 21 additions and 79 deletions

View File

@@ -128,11 +128,10 @@ namespace OpenSim.Groups
Dictionary<string, object> request =
ServerUtils.ParseQueryString(body);
if (!request.ContainsKey("METHOD"))
if(!request.Remove("METHOD", out object omethod))
return FailureResult();
string method = request["METHOD"].ToString();
request.Remove("METHOD");
string method = omethod.ToString();
m_log.DebugFormat("[Groups.RobustHGConnector]: {0}", method);
switch (method)