discovery, persistence, frontend, and various fixes to incremental

This commit is contained in:
Mark Harrah 2010-07-02 06:57:03 -04:00
parent ba725d5046
commit 7ecfc0b8f8
1 changed files with 1 additions and 1 deletions

View File

@ -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 [", ", ", "]")
}