B2024-042 - Update TreeNodeReplace section when adding a node to working draft (remove unneeded code)

This commit is contained in:
Kevin Laskey 2024-07-22 09:39:13 -04:00
parent a1380dbb8a
commit bf72a6bf78

View File

@ -2547,6 +2547,7 @@ namespace VEPROMS.CSLA.Library
newItemInfo.UpdateTransitionText();
newItemInfo.UpdateROText();
newItemInfo.UpdatePastedStepTransitionText();
// Add to tree
if (newItemInfo.NextItem != null)
{
@ -2564,11 +2565,10 @@ namespace VEPROMS.CSLA.Library
}
else
{
//Create tree node for copied procedure when no other procedures exist in the folder
//Create tree node for copied procedure when no other procedures exist in the working draft (treeNodeReplace)
VETreeNode tn = null;
tn = new VETreeNode(newItemInfo);
treeNodeReplace.Nodes.Add(tn);
treeNodeReplace = tn;
}
return newItemInfo;
}