Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.349.mcz==================== Summary ====================
Name: Monticello-nice.349
Author: nice
Time: 1 January 2010, 5:43:49 am
UUID: 8d156a44-1b3c-4c43-a2eb-7a15cdb54b51
Ancestors: Monticello-ar.348
Remove an assigment to a block argument
=============== Diff against Monticello-ar.348 ===============
Item was changed:
----- Method: MCMczReader>>associate: (in category 'as yet unclassified') -----
associate: tokens
| result |
result := Dictionary new.
tokens pairsDo: [:key :value |
+ result at: key put: (value isString
+ ifTrue: [value]
+ ifFalse: [value collect: [:ea | self associate: ea]])].
- value isString ifFalse: [value := value collect: [:ea | self associate: ea]].
- result at: key put: value].
^ result!