Skip to content

Commit

Permalink
Fixing exception handling in CollectInputs()
Browse files Browse the repository at this point in the history
  • Loading branch information
adecler committed May 8, 2020
1 parent 69e3d17 commit b2f76d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BHoM_UI/Templates/Caller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ protected virtual object[] CollectInputs()
catch (Exception e)
{
RecordError(e, "This component failed to run properly. Inputs cannot be collected properly.\n");
inputs = null;
return null;
}

return inputs.ToArray();
Expand Down

0 comments on commit b2f76d1

Please sign in to comment.