Skip to content

Commit

Permalink
fixing a typo in method signature GooFromResthopperObject
Browse files Browse the repository at this point in the history
  • Loading branch information
andyopayne committed Aug 9, 2023
1 parent 074867e commit b4256cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hops/RemoteDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ public void SetComponentOutputs(Schema schema, IGH_DataAccess DA, List<IGH_Param
var localBranch = structure.EnsurePath(path);
for (int gooIndex = 0; gooIndex < kv.Value.Count; gooIndex++)
{
goo = GooFromReshopperObject(kv.Value[gooIndex]);
goo = GooFromResthopperObject(kv.Value[gooIndex]);
localBranch.Add(goo);
}
}
Expand All @@ -637,7 +637,7 @@ public void SetComponentOutputs(Schema schema, IGH_DataAccess DA, List<IGH_Param
}
}

static IGH_Goo GooFromReshopperObject(ResthopperObject obj)
static IGH_Goo GooFromResthopperObject(ResthopperObject obj)
{
if (obj.ResolvedData != null)
return obj.ResolvedData as Grasshopper.Kernel.Types.IGH_Goo;
Expand Down

0 comments on commit b4256cd

Please sign in to comment.