Причесывание кода

This commit is contained in:
2025-02-24 18:01:34 +03:00
parent 14c74c5775
commit 05ee651e89
11 changed files with 56 additions and 32 deletions
@@ -91,7 +91,8 @@ namespace mROA.Implementation.Frontend
if (request.Parameter is not null)
{
var parameterType = _methodRepository!.GetMethod(request.CommandId).GetParameters().First()
var method = _methodRepository!.GetMethod(request.CommandId);
var parameterType = method.GetParameters().First()
.ParameterType;
request.Parameter = _serializationToolkit.Cast(request.Parameter, parameterType);