From 0014604fde1dae50dcc87efcdf741ebc701efc98 Mon Sep 17 00:00:00 2001 From: AlejandroP Date: Thu, 21 Apr 2022 14:25:23 -0300 Subject: [PATCH] - Eliminates forced breakpoint. --- .../src/dotnetframework/GxClasses/Services/ReflectionHelper.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs b/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs index 751a046b7..9decf8f22 100644 --- a/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs +++ b/dotnet/src/dotnetframework/GxClasses/Services/ReflectionHelper.cs @@ -69,8 +69,7 @@ public static bool MethodHasInputParameters(object instance, String methodName) } public static Dictionary GetWrappedParameter(object instance, String methodName, Dictionary bodyParameters) - { - System.Diagnostics.Debugger.Launch(); + { MethodInfo methodInfo = instance.GetType().GetMethod(methodName); var methodParameters = methodInfo.GetParameters(); List inputParameters = new List();