From 97951e8cf49540a3e88a392d86a44447c10cee5f Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sat, 18 Dec 2010 12:39:38 -0500 Subject: [PATCH] Remove obsolete comments --- main/parsers/CommandStrings.scala | 3 --- util/collection/Dag.scala | 1 - 2 files changed, 4 deletions(-) diff --git a/main/parsers/CommandStrings.scala b/main/parsers/CommandStrings.scala index e1a4dfcf1..297f157aa 100755 --- a/main/parsers/CommandStrings.scala +++ b/main/parsers/CommandStrings.scala @@ -8,9 +8,6 @@ final class PropertyParser[A,B](propertyNames: ((Option[A], Option[B])) => Set[S { val wsc = charClass(_.isWhitespace) val ws = ( wsc + ) examples(" ") - // lesson #1: never end a 'token' with a nullable Parser or the next token will never be suggested. - // lesson #2 where there is whitespace (including required whitespace), it should start a token - // might be issues to try to address better at some point. These should now be fixed, but the comment will be left here for now. val optWs = ( wsc * ) examples("") val nameChar = (c: Char) => idChar(c) && !(c == ',' || c == '*') diff --git a/util/collection/Dag.scala b/util/collection/Dag.scala index 55064eaef..9d6a295ea 100644 --- a/util/collection/Dag.scala +++ b/util/collection/Dag.scala @@ -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] =