summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/ObservableMap.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/mutable/ObservableMap.scala')
-rw-r--r--src/library/scala/collection/mutable/ObservableMap.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/library/scala/collection/mutable/ObservableMap.scala b/src/library/scala/collection/mutable/ObservableMap.scala
index 626129343c..988eaf67c6 100644
--- a/src/library/scala/collection/mutable/ObservableMap.scala
+++ b/src/library/scala/collection/mutable/ObservableMap.scala
@@ -23,19 +23,19 @@ package scala.collection.mutable
*/
trait ObservableMap[A, B, This <: ObservableMap[A, B, This]] requires This
extends Map[A, B]
- with Publisher[Message[{A, B}]
+ with Publisher[Message[Pair[A, B]]
with Undoable, This]
{
abstract override def update(key: A, value: B): Unit = get(key) match {
case None =>
super.update(key, value)
- publish(new Include({key, value}) with Undoable {
+ publish(new Include(Pair(key, value)) with Undoable {
def undo = -=(key)
})
case Some(old) =>
super.update(key, value)
- publish(new Update({key, value}) with Undoable {
+ publish(new Update(Pair(key, value)) with Undoable {
def undo = update(key, old)
})
}
@@ -44,7 +44,7 @@ trait ObservableMap[A, B, This <: ObservableMap[A, B, This]] requires This
case None =>
case Some(old) =>
super.-=(key)
- publish(new Remove({key, old}) with Undoable {
+ publish(new Remove(Pair(key, old)) with Undoable {
def undo = update(key, old)
})
}