mirror of https://github.com/sbt/sbt.git
discovery, persistence, frontend, and various fixes to incremental
This commit is contained in:
parent
ba725d5046
commit
7ecfc0b8f8
|
|
@ -96,5 +96,5 @@ private final class MRelation[A,B](fwd: Map[A, Set[B]], rev: Map[B, Set[A]]) ext
|
|||
|
||||
private[this] def get[X,Y](map: M[X,Y], t: X): Set[Y] = map.getOrElse(t, Set.empty[Y])
|
||||
|
||||
override def toString = all.mkString("Relation [", ", ", "]")
|
||||
override def toString = all.map { case (a,b) => a + " -> " + b }.mkString("Relation [", ", ", "]")
|
||||
}
|
||||
Loading…
Reference in New Issue