Skip to content

Commit

Permalink
Fixed a bug where for MCTs exported from Midas that had no spaces (no…
Browse files Browse the repository at this point in the history
…t the case when pushed from the BHoM)
  • Loading branch information
peterjamesnugent committed Aug 17, 2023
1 parent 00bd6aa commit 91be6c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MidasCivil_Adapter/PrivateHelpers/GetBarReleaseAssignments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ private Dictionary<string, List<int>> GetBarReleaseAssignments(string section, s
Where(x => !string.IsNullOrEmpty(x)).
ToList();
}
else
{
geometryAssignments.Add(splitSection.Trim());
}

List<int> propertyAssignment = MidasCivilAdapter.GetAssignmentIds(geometryAssignments);

Expand Down

0 comments on commit 91be6c2

Please sign in to comment.