提交 c954a84a 编写于 作者: J Jason Malinowski

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.
上级 6f3c1f14
......@@ -42,7 +42,7 @@ public class ProjectDependencyGraph
}
/// <summary>
/// Gets the list of projects (topologically sorted) that this project directly depends on.
/// Gets the list of projects that this project directly depends on.
/// </summary>
public IImmutableSet<ProjectId> GetProjectsThatThisProjectDirectlyDependsOn(ProjectId projectId)
{
......@@ -62,7 +62,7 @@ public IImmutableSet<ProjectId> GetProjectsThatThisProjectDirectlyDependsOn(Proj
}
/// <summary>
/// Gets the list of projects (topologically sorted) that directly depend on this project.
/// Gets the list of projects that directly depend on this project.
/// </summary>
public IImmutableSet<ProjectId> GetProjectsThatDirectlyDependOnThisProject(ProjectId projectId)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册