summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
diff options
context:
space:
mode:
authorTiark Rompf <tiark.rompf@epfl.ch>2010-03-07 20:52:45 +0000
committerTiark Rompf <tiark.rompf@epfl.ch>2010-03-07 20:52:45 +0000
commitfee21b7e701bbb4a3f311cf06ecd668cb5d0bc94 (patch)
tree9e0fa10f036010b3e2bdf29dc804dea6736a26c0 /test/files/jvm/serialization.check
parent69d8830083ad509acadcca3051b64154532bc145 (diff)
downloadscala-fee21b7e701bbb4a3f311cf06ecd668cb5d0bc94.tar.gz
scala-fee21b7e701bbb4a3f311cf06ecd668cb5d0bc94.tar.bz2
scala-fee21b7e701bbb4a3f311cf06ecd668cb5d0bc94.zip
- new immutable HashMap implementation based on...
- new immutable HashMap implementation based on a hash trie. this is the first iteration, more optimizations will be added later. - updated test cases to reflect new ordering of elements - made Map.empty and Set.empty singletons, deprecating classes Map.EmptyMap and Set.EmptySet Review by extempore, odersky.
Diffstat (limited to 'test/files/jvm/serialization.check')
-rw-r--r--test/files/jvm/serialization.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/jvm/serialization.check b/test/files/jvm/serialization.check
index 2b0ad3888b..05fcc015a7 100644
--- a/test/files/jvm/serialization.check
+++ b/test/files/jvm/serialization.check
@@ -77,7 +77,7 @@ x = BitSet(2, 3)
y = BitSet(2, 3)
x equals y: true, y equals x: true
-x = Map(2 -> B, 1 -> A, 3 -> C)
+x = Map(1 -> A, 2 -> B, 3 -> C)
y = Map(1 -> A, 2 -> B, 3 -> C)
x equals y: true, y equals x: true