mirror of https://github.com/sbt/sbt.git
Remove obsolete comments
This commit is contained in:
parent
f0ef14289d
commit
783d732868
|
|
@ -14,7 +14,6 @@ object Dag
|
|||
import scala.collection.{mutable, JavaConversions};
|
||||
import JavaConversions.{asIterable, asSet}
|
||||
|
||||
// TODO: replace implementation with call to new version
|
||||
def topologicalSort[T](root: T)(dependencies: T => Iterable[T]): List[T] = topologicalSort(root :: Nil)(dependencies)
|
||||
|
||||
def topologicalSort[T](nodes: Iterable[T])(dependencies: T => Iterable[T]): List[T] =
|
||||
|
|
|
|||
Loading…
Reference in New Issue