summaryrefslogtreecommitdiff
path: root/test/files/run/t7498.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7498 ParTrieMap.foreach no longer crashesAleksandar Prokopec2013-05-301-0/+20
Previously, the `split` method of the `ParTrieMap` iterator threw an exception when splitting a splitter that iterated over nodes whose hash codes collide. This was due to reusing the iterator of the list of colliding keys rather than creating a new splitter. This commit changes the `subdivide` method to create a new iterator using the factory method of the current trie map iterator rather than returning a `LinearSeqLike` iterator.