mirror of https://github.com/sbt/sbt.git
Remove obsolete comments
This commit is contained in:
parent
ac70b45c1c
commit
97951e8cf4
|
|
@ -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 == '*')
|
||||
|
|
|
|||
|
|
@ -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