summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-02-14 13:24:05 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-02-14 13:24:05 -0800
commite86675f582ed8fef880f71744241f30e0d57a51c (patch)
treead457f11f19c6487ced06dc7dedda58d538cebe9 /src/library
parentd62ceb88278bbe8317e8dcce6fb8515cae64e2b1 (diff)
parenta4a13199d0811d01cb008804ae34c594abdc415e (diff)
downloadscala-e86675f582ed8fef880f71744241f30e0d57a51c.tar.gz
scala-e86675f582ed8fef880f71744241f30e0d57a51c.tar.bz2
scala-e86675f582ed8fef880f71744241f30e0d57a51c.zip
Merge pull request #3531 from Ichoran/issue/8188
SI-8188 NPE during deserialization of TrieMap
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/concurrent/TrieMap.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/concurrent/TrieMap.scala b/src/library/scala/collection/concurrent/TrieMap.scala
index 6632f30e51..fccc1d81b9 100644
--- a/src/library/scala/collection/concurrent/TrieMap.scala
+++ b/src/library/scala/collection/concurrent/TrieMap.scala
@@ -655,8 +655,8 @@ extends scala.collection.concurrent.Map[K, V]
/* internal methods */
private def writeObject(out: java.io.ObjectOutputStream) {
- out.writeObject(hashf)
- out.writeObject(ef)
+ out.writeObject(hashingobj)
+ out.writeObject(equalityobj)
val it = iterator
while (it.hasNext) {