Skip to content

Commit 59e25db

Browse files
Remove another inline declaration!
1 parent 6bd7841 commit 59e25db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

MidasCivil_Engine/Convert/ToBHoM/Elements/RigidLink.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public static RigidLink ToBHoMRigidLink(string rigidLink, Dictionary<string,Node
2626

2727
LinkConstraint constraint = new LinkConstraint { XtoX = x, YtoY = y, ZtoZ = z, XXtoXX = xx, YYtoYY = yy, ZZtoZZ = zz };
2828

29-
nodes.TryGetValue(master, out Node masterNode);
29+
Node masterNode;
30+
nodes.TryGetValue(master, out masterNode);
3031

3132
foreach (int assignment in assignments)
3233
{

0 commit comments

Comments
 (0)