From c954a84a7f0fea67e399c762e50d77d2dd6fc4a9 Mon Sep 17 00:00:00 2001 From: Jason Malinowski Date: Wed, 27 Jun 2018 15:55:27 -0700 Subject: [PATCH] Remove "topologically sorted" documentation from ProjectDependencyGraph These methods do not return topologically sorted results; not only is that not something that really makes sense, but they return IImmutableSets anyways so they have no way to guarantee ordering at all. --- .../Portable/Workspace/Solution/ProjectDependencyGraph.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Workspaces/Core/Portable/Workspace/Solution/ProjectDependencyGraph.cs b/src/Workspaces/Core/Portable/Workspace/Solution/ProjectDependencyGraph.cs index b6d5b88d925..cda93711c69 100644 --- a/src/Workspaces/Core/Portable/Workspace/Solution/ProjectDependencyGraph.cs +++ b/src/Workspaces/Core/Portable/Workspace/Solution/ProjectDependencyGraph.cs @@ -42,7 +42,7 @@ public class ProjectDependencyGraph } /// - /// Gets the list of projects (topologically sorted) that this project directly depends on. + /// Gets the list of projects that this project directly depends on. /// public IImmutableSet GetProjectsThatThisProjectDirectlyDependsOn(ProjectId projectId) { @@ -62,7 +62,7 @@ public IImmutableSet GetProjectsThatThisProjectDirectlyDependsOn(Proj } /// - /// Gets the list of projects (topologically sorted) that directly depend on this project. + /// Gets the list of projects that directly depend on this project. /// public IImmutableSet GetProjectsThatDirectlyDependOnThisProject(ProjectId projectId) { -- GitLab