GPUGraph.SubGraphNode.UpdateGraphPaths C# (CSharp) Method

UpdateGraphPaths() private method

private UpdateGraphPaths ( ) : void
return void
        private void UpdateGraphPaths()
        {
            guids = GraphEditorUtils.GetAllGraphsInProject(null, true)
                        .Select(p => AssetDatabase.AssetPathToGUID(p))
                        .ToList();
            //Remove this graph from the list of possible selections.
            if (Owner != null)
            {
                string thisGraphGUID = ThisGraphGUID;
                int i = (Owner == null ? -1 : guids.IndexOf(g => (g == thisGraphGUID)));
                if (i >= 0)
                {
                    guids.RemoveAt(i);
                }
            }

            UpdateNameArray();
        }