Eliot Miranda uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-eem.653.mcz==================== Summary ====================
Name: Collections-eem.653
Author: eem
Time: 2 September 2015, 6:26:05.268 pm
UUID: dfc67d6b-1eaf-42c5-929d-b136b4d28ef0
Ancestors: Collections-cbc.652
Remove carriage returns from some time stamps.
Nuke unused private method in old finalization scheme.
=============== Diff against Collections-cbc.652 ===============
Item was changed:
----- Method: PluggableDictionary class>>integerDictionary (in category 'instance creation') -----
integerDictionary
^ self new hashBlock: [:integer | integer hash \\ 1064164 * 1009]!
Item was changed:
----- Method: PluggableSet class>>integerSet (in category 'instance creation') -----
integerSet
^self new hashBlock: [:integer | integer hash \\ 1064164 * 1009]!
Item was removed:
- ----- Method: WeakArray class>>pvtCreateTemporaryObjectIn: (in category 'private') -----
- pvtCreateTemporaryObjectIn: tempObject
- "We have to create the temporary object in a separate stack frame"
- tempObject at: 1 put: Object new!