Remove obsolete comments

This commit is contained in:
Mark Harrah 2010-12-18 12:39:38 -05:00
parent f0ef14289d
commit 783d732868
1 changed files with 0 additions and 1 deletions

View File

@ -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] =