Removed reference to unnecessary method

This commit is contained in:
David Sparer
2016-09-26 14:47:41 -06:00
parent 2540777e18
commit 0bdb57c44e

View File

@@ -173,7 +173,7 @@ namespace mRemoteNG.Config.Serializers
_currentNodeIndex++;
var dataRow = _dataTable.NewRow();
dataRow["Name"] = connectionInfo.Name;
dataRow["Type"] = ConnectionTreeNode.GetNodeType(connectionInfo.TreeNode).ToString();
dataRow["Type"] = connectionInfo.GetTreeNodeType().ToString();
dataRow["ConstantID"] = connectionInfo.ConstantID;
dataRow["ParentID"] = connectionInfo.Parent.ConstantID;
dataRow["PositionID"] = _currentNodeIndex;