Update ReflectionInspector.cs

This commit is contained in:
sinaioutlander 2020-11-10 20:31:48 +11:00
parent ca90b64378
commit 9c077b3aa3

View File

@ -148,16 +148,9 @@ namespace UnityExplorer.Inspectors
continue; continue;
if (mi != null) if (mi != null)
{
try
{ {
AppendParams(mi.GetParameters()); AppendParams(mi.GetParameters());
} }
catch (Exception e)
{
ExplorerCore.Log(e);
}
}
else if (pi != null) else if (pi != null)
{ {
AppendParams(pi.GetIndexParameters()); AppendParams(pi.GetIndexParameters());