From 9c077b3aa3e58093d2e97dd389dd15211e13139d Mon Sep 17 00:00:00 2001 From: sinaioutlander <49360850+sinaioutlander@users.noreply.github.com> Date: Tue, 10 Nov 2020 20:31:48 +1100 Subject: [PATCH] Update ReflectionInspector.cs --- src/Inspectors/ReflectionInspector.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Inspectors/ReflectionInspector.cs b/src/Inspectors/ReflectionInspector.cs index 9e9d2f1..44e26a2 100644 --- a/src/Inspectors/ReflectionInspector.cs +++ b/src/Inspectors/ReflectionInspector.cs @@ -149,14 +149,7 @@ namespace UnityExplorer.Inspectors if (mi != null) { - try - { - AppendParams(mi.GetParameters()); - } - catch (Exception e) - { - ExplorerCore.Log(e); - } + AppendParams(mi.GetParameters()); } else if (pi != null) {