summaryrefslogtreecommitdiff
path: root/test/files/run/t5879.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-6811 Remove deprecated elements in scala.collectionSimon Ochsenreither2013-01-171-8/+0
|
* Fix SI-5879.Aleksandar Prokopec2012-06-061-0/+16
Fix a bug where a key in an immutable hash map have the corresponding value different in the iteration than when doing lookup. This use to happen after calling `merge`. Fix the order in which a key-value pair appears in the collision resolution function - the first argument always comes from the `this` hash map. Deprecate `merge` in favour of `merged`, as this is a pure method. As an added benefit, the syntax for invoking `merge` is now nicer.