clean up scope delegation implementation

This commit is contained in:
Mark Harrah 2011-04-12 20:58:59 -04:00
parent 944bd82306
commit c368a34d36
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ object IMap
put(k, f(this get k getOrElse init))
def mapValues[V2[_]](f: V ~> V2) =
new IMap0[K,V2](backing.mapValues(x => f(x)))
new IMap0[K,V2](backing.mapValues(x => f(x)).toMap)
def toSeq = backing.toSeq
override def toString = backing.toString